Nginxが使用していないので、.htaccessを編集しようとして間違ったツリーに吠えていたことがわかりました。私がしなければならないのは私の.confファイルを編集することです。これを読む前は、my_app.confは次のようになっていました。
upstream backend {
server unix:/u/apps/my_app/tmp/php.sock;
}
server {
listen 80 default;
root /u/apps/my_app/www;
index index.php;
access_log /u/apps/my_app/logs/access.log;
error_log /u/apps/my_app/logs/error.log;
location / {
try_files $uri $uri/ /index.php;
}
# This location block matches anything ending in .php and sends it to
# our PHP-FPM socket, defined in the upstream block above.
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass backend;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /u/apps/my_app/www$fastcgi_script_name;
include fastcgi_params;
}
# This location block is used to view PHP-FPM stats
location ~ ^/(php_status|php_ping)$ {
fastcgi_pass backend;
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
include fastcgi_params;
allow 127.0.0.1;
deny all;
}
# This location block is used to view nginx stats
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
今、それはこのように見えます、そしてそれはまだ働いていません:
upstream backend {
server unix:/u/apps/my_app/tmp/php.sock;
}
server {
listen 80 default;
root /u/apps/my_app/www;
index index.php;
access_log /u/apps/my_app/logs/access.log;
error_log /u/apps/my_app/logs/error.log;
location / {
try_files $uri $uri/ /index.php;
}
location /wordpress/ {
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$Host$uri/ permanent;
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;
# This location block matches anything ending in .php and sends it to
# our PHP-FPM socket, defined in the upstream block above.
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass backend;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /u/apps/my_app/www$fastcgi_script_name;
include fastcgi_params;
}
# This location block is used to view PHP-FPM stats
location ~ ^/(php_status|php_ping)$ {
fastcgi_pass backend;
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
include fastcgi_params;
allow 127.0.0.1;
deny all;
}
# This location block is used to view nginx stats
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
誰が私が間違っていることを知っていますか?
私のパーマリンクをデフォルトから/%postname%/に変更しました、そして今WordPressの管理パネル内のリンクは私に404エラーを与えます - WordPress 404ページではなく、nginx 404ページ。なぜこれが私の.htaccessファイルを編集するべきか、またはWordPressが.htaccessを書き換えることができないのかを告げるべきだと私に言われたのですが - .htaccessファイルは存在しません。
私は私のwordpressフォルダに空の.htaccessファイルを作成し、それに666権限を与え、ユーザーとグループをwww-dataに変更し、それからパーマリンクを変更することでうまくいきませんでした。私はそれからパーマリンクを変える前にこれにそれを変えた:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
それでもうまくいかなかったときは、パーマリンクを変更する前にRewriteBase
を/wordpress/
に変更しました。
私は自分のサイトの.confファイルにも入り、try_files $uri $uri/ /index.php;
を次のように変更し、毎回nginxとphp5-fpmを再起動しました。
try_files $uri $uri/ /index.php?$query_string;
try_files $uri $uri/ /index.php?q=$request_uri;
try_files $uri $uri/ /index.php?$args;
私はホームサーバーをnginxで動かしています。ここで何が起こっているのかについて何かアイデアはありますか?
それらは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;
}
私はカスタムパーマリンク設定でワードプレスマルチサイトを使っています:/%category%/%postname%/
/etc/nginx/site-available/domain.conf
サーバー上{
location / {
try_files $uri $uri/ /index.php?q=$uri$args;
}
ルートワードプレスがWebルートではなく http://domain.com/wordpress/ :の場合
location /wordpress/ {
try_files $uri $uri/ /wordpress/index.php?q=$uri$args;
}
Blogs.dirで古いワードプレスを使用している場合は、以下を追加してください。location ^〜/blogs.dir {internal;} alias /var/www/wordpress/wp-content/blogs.dir; access_logオフ。 log_not_found off;期限切れ}
Nginxの設定を確認します。Sudo nginx -t
Nginxのリロード:Sudo service nginxのリロード
パーマリンクの設定も変更してみてください。
このコードを/sites-available/your-settings-file
と/sites-enabled/your-settings-file
の両方に追加する必要がありました。
server {
[...]
if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}
[...]
}
それは今私のために働いています。
私はルートパスをwordpressśインストールディレクトリに設定しなければなりませんでした:root/var/www/html/wp;
私はこのマシンにもっと多くのアプリケーションがインストールされているので好きではありませんが、もっと仮想ホストを作成すれば十分です。