現在估計很少人會用到云虛擬機,畢竟各家輕量云也比較香。如果你剛好有一臺阿里云的虛擬主機,又恰好在使用 WordPress 網站。那么就有可能碰到設置了WordPress 固定鏈接后,文章、分類跳轉404的問題。
出現這個問題,不用慌,在阿里云虛擬主機后臺中,找到 「高級環境設置」-> 「Nginx設置」,填寫下面這段代碼即可。
- location / {
- # This is cool because no php is touched for static content.
- # include the "?$args" part so non-default permalinks doesn't break when using query string
- try_files $uri $uri/ /index.php?$args;
- }
- rewrite /wp-admin$ $scheme://$host$uri/ permanent;
原文地址:https://www.suxing.me/wp-courses/2249.html