我有两个问题,但我认为他们有关系。像/wp-admin
,/blog
这样的子目录返回404,因此永久链接不会跟随它们/blog/category1/page.php
我的设置:
我有一台运行nginx的服务器192.168.1.4
。在另一台服务器上,192.168.1.1
我有一个使用虚拟主机的apache web服务器,它托管我的wordpress网站。没有nginx,设置工作正常,但是当我打开nginx时,我有一些问题。
Nginx不适用于永久链接。我已经使用了默认值,所以现在它就像:http://www.mywebsite.co.uk/?page_id=90
一样正常(只要它不在子目录中)。
子目录中的所有内容(不在root中)都会中断。包括管理页面http://www.mywebsite.co.uk/wp-admin,或(在关闭固定链接之前)http://www.mywebsite.co.uk/blog。他们都转到404
,具体来说是:404 Not Found nginx/1.4.6 (Ubuntu)
这是我的配置:
server {
server_name mywebsite.co.uk www.mywebsite.co.uk;
location / {
index index.php;
proxy_pass http://192.168.1.1$request_uri;
proxy_set_header Host $host;
proxy_set_header X-Real-Ip $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
try_files $uri $uri/ =404;
#try_files $uri $uri/ /index.php?$args; #not working, error: rewrute or internal redirection cycle while interally redirecting to index.php
}
}
供参考,以下是我的永久链接:/blog/%category%/%postname%/
更新
尝试将此添加到我的配置中:
server {
... config above ...
location /wp-admin/ {
index index.php
try_files $uri $uri/ /wp-admin/index.php?$args;
proxy_pass http://192.168.1.1$request_uri;
proxy_set_header Host $host;
}
}
这会在log:
中重新发生错误rewrite or internal redirection cycle while internally redirecting to "/wp-admin/index.php", client: xxxxx, server: mydomain.co.uk`
答案 0 :(得分:3)
你有一些工作配置。您的配置中<a href='www.facebook.com'>
的目的是将代理反向到Apache服务器。在这种情况下,nginx
和index
不合适。尝试:
try_files
答案 1 :(得分:0)
为什么你不想在没有apache的情况下尝试wordpress? 工作配置将是这样的:
server {
listen 80;
server_name site.com;
root /home/www/site.com;
access_log /var/log/nginx/log;
error_log /var/log/nginx/error.log;
index index.php;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
# SECURITY : Deny all attempts to access PHP Files in the uploads directory
location ~* /(?:uploads|files)/.*\.php$ {
deny all;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm/php.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt {allow all; log_not_found off; access_log off; }
error_page 404 /404.html;
location ~ /\. { deny all; }
location ~* ^.+\.(js|css|swf|xml|txt|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 30d;
}
}
答案 2 :(得分:0)
答案 3 :(得分:0)
我发现我的问题是未启用mod_rewrite。我必须使用apache在服务器上运行a2enmod重写