カスタムパーマリンク設定で wordpress マルチサイトを使用しています:/%category%/%postname%/
/etc/nginx/site-available/domain.conf
サーバー上{
location / {
try_files $uri $uri/ /index.php?q=$uri$args;
}
ルート ワードプレスがウェブルートではなく、http://domain.com/wordpress/ の場合:
location /wordpress/ {
try_files $uri $uri/ /wordpress/index.php?q=$uri$args;
}
blogs.dir で古い wordpress を使用している場合は、次のように追加します。 log_not_found オフ;最大有効期限;}
nginx の設定を確認してください:sudo nginx -t
nginx のリロード:sudo サービス nginx reload
また、パーマリンクの設定を変更してみてください。
それらは Apache .htaccess
です ルールを書き換えますが、Nginxサーバー上にいると述べています。 Nginx は .htaccess
を使用しません - ディレクトリ レベルのファイルのように、ましてや .htaccess
ファイル自体..サーバー構成自体を編集する必要があります。コーデックスには詳細なサンプルがあります:
# WordPress single blog rules.
# Designed to be included in any server {} block.
# This order might seem weird - this is attempted to match last if rules below fail.
# http://wiki.nginx.org/HttpCoreModule
location / {
try_files $uri $uri/ /index.php?$args;
}
# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
# Directives to send expires headers and turn off 404 error logging.
location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
access_log off; log_not_found off; expires max;
}
# Uncomment one of the lines below for the appropriate caching plugin (if used).
#include global/wordpress-wp-super-cache.conf;
#include global/wordpress-w3-total-cache.conf;
# Pass all .php files onto a php-fpm/php-fcgi server.
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
# This is a robust solution for path info security issue and works with "cgi.fix_pathinfo = 1" in /etc/php.ini (default)
include fastcgi.conf;
fastcgi_index index.php;
# fastcgi_intercept_errors on;
fastcgi_pass php;
}
このコードを /sites-available/your-settings-file
の両方に追加する必要がありました と /sites-enabled/your-settings-file
:
server {
[...]
if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}
[...]
}
今はうまくいっています。
Android - シェル コマンドを使用して、その下にある Linux システムと対話するにはどうすればよいですか?
WordPress - WordPress ページで 404 ステータス コードを抑制するにはどうすればよいですか?