本文主要是介绍[wordpress nginx]除了homepage其他子页面全是404 not found,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用Lnmp1.4一键安装包,然后配个wp,什么都很快。
然而对于新手来说到了customization的时候痛苦就要double一下下。
本人折腾从http 转到 https 的时候历经磨难,终于自学成“才” (chai)。下面来说一下这个标题问题的解决方案。
nginx.conf in /usr/local/nginx/conf/
server {listen 80;listen [::]:80;server_name www.example.com;return 301 https://$server_name$request_uri;
}server{listen 443 ssl;listen [::]:443 ssl;server_name www.example.com;index index.php index.html;root /home/wwwroot/www.example.com;ssl on;ssl_certificate /home/wwwroot/www_example_com.crt;ssl_certificate_key /home/wwwroot/example.key;ssl_protocols TLSv1 TLSv1.1 TLSv1.2;ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!MD5:!DSS;ssl_prefer_server_ciphers on;#error_page 404 /404.html;# Deny access to PHP files in specific directory#location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }include enable-php.conf;#from nginx wordpress not working;include wordpress.conf; #Check wordpress.conflocation /nginx_status{stub_status on;access_log off;}location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${expires 30d;}location ~ .*\.(js|css)?${expires 12h;}location ~ /.well-known {allow all;}location ~ /\.{deny all;}access_log /home/wwwlogs/access.log;}
include vhost/*.conf;
}
wordpress.conf in /usr/local/nginx/conf/
location / {#try_files $uri $uri/ /index.php?$args;try_files $uri $uri/ /index.php?q=$uri&$args; #重点
}# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
这篇关于[wordpress nginx]除了homepage其他子页面全是404 not found的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!