現象
WordPressでデフォルトのパーマリンクからカスタム構造に変更したところ、404 Not Foundに!!!
環境
- サーバ:さくらVPS(Ubuntu20.04)
- WordPressバージョン:5.7.2
回避策
/etc/nginx/の設定ファイルの該当するlocationに以下を追加
location / {
...
try_files $uri $uri/ /index.php?$args;
...
}
WordPressでデフォルトのパーマリンクからカスタム構造に変更したところ、404 Not Foundに!!!
/etc/nginx/の設定ファイルの該当するlocationに以下を追加
location / {
...
try_files $uri $uri/ /index.php?$args;
...
}