WordPress – PhpStudy本地环境修改固定链接打不开网页404错误
1 问题
PhpStudy本地测试wordPress,在后台修改固定链接方式之后出现了文章页面链接打不开的问题,直接404
2 解决方法
在该文件location处加入以下代码:
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
修改后整个vhosts.conf配置文件内容如下:
server {
listen 80;
server_name localhost;
root "D:/Program Files (x86)/PhpStudy/phpstudy_pro/WWW";
location / {
index index.php index.html;
error_page 400 /error/400.html;
error_page 403 /error/403.html;
error_page 404 /error/404.html;
error_page 500 /error/500.html;
error_page 501 /error/501.html;
error_page 502 /error/502.html;
error_page 503 /error/503.html;
error_page 504 /error/504.html;
error_page 505 /error/505.html;
error_page 506 /error/506.html;
error_page 507 /error/507.html;
error_page 509 /error/509.html;
error_page 510 /error/510.html;
autoindex off;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}
修改之后保存,在phpstudy重启nginx或者即可。
3 更新
更新于2023年5月25日。
今天重新按照上述步骤在phpstudy v8.1上进行配置,文章是可以正常访问,但是localhost也就是网站首页没有办法正常打开了,然后重新找了一个方法,既可以打开文章页面也可以不影响首页。
在phpstudy侧面菜单,点击网站 - 选择管理网站,然后点击伪静态,如下图
然后在伪静态输入以下代码:
location /
{
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
如下图
点击确认之后,nginx会自动重启,然后就可以正常打开网站首页和文章页面了。
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:WordPress – PhpStudy本地环境修改固定链接打不开网页404错误
原文链接:https://www.stubbornhuang.com/626/
发布于:2020年01月08日 16:53:07
修改于:2023年05月25日 10:58:34
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50