我有一个wordpress网站,其永久链接设置为发布名称。除索引外,所有页面都不会出现并返回404。如果我把它设置为普通,那么它们会出现,但很多资源都缺失了,我不知道为什么。
所以要明确一点,如果固定链接很简单,它可以工作,但是由于多个文件上有404(索引除外),因此存在许多错误。 如果永久链接是postname,则整个页面是404。
这是我的htaccess文件,我的nginx配置和我的php-fpm配置。 有谁能看到这个问题?
# 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
NGINX CONF
server {
listen 80;
server_name www.example.com example.com;
root /var/www/example;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
server_name www.example.com example.com;
root /var/www/example;
index index.php;
ssl_certificate /etc/nginx/ssl/example.com/example.com.crt;
ssl_certificate_key /etc/nginx/ssl/example.com/example.com.key;
access_log /var/log/nginx/example.log main;
error_log /var/log/nginx/example_error.log;
location / {
root /var/www/example;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
PHP-FPM
[example]
listen = 127.0.0.1:9001
listen.allowed_clients = 127.0.0.1
user = nginx
group = nginx
...and some more I don't think is relevant but I can supply if asked for.
感谢您的帮助!
答案 0 :(得分:1)
在没有看到实际错误或哪些文件是404的情况下,我想你可能在你的nginx配置中缺少try_files。我看看这个: http://nginxlibrary.com/wordpress-permalinks/
此外,nginx不需要或不需要.htaccess: https://www.nginx.com/resources/wiki/start/topics/examples/likeapache-htaccess/
此外,我还要检查以确保您的数据库中的URL设置正确。 (我发布了链接,但我没有代表) 我使用wp-cli进行搜索替换。我不止一次忘记这样做,从开发到舞台,并有一个wtf时刻。 :)
希望这一切都有帮助!
*编辑以帮助更多*
在深入研究这些教程之后,他们遗漏了一些更好的观点。如果不深入研究,请尝试使用更接近它的东西:
listen 443 ssl;
root /var/www/example;
index index.php index.html index.htm;
server_name www.example.com example.com;
ssl_certificate /etc/nginx/ssl/example.com/example.com.crt;
ssl_certificate_key /etc/nginx/ssl/example.com/example.com.key;
access_log /var/log/nginx/example.log main;
error_log /var/log/nginx/example_error.log;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
这是你所拥有的和我运行的配置的混合。让我知道它是如何为你做的。