您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
phpStudy2018 Nginx怎么支持WordPress自定义链接
谷雪2023-06-19 00:00:20WordPress教程已有人查阅
导读让phpStudy2018 Nginx 支持WordPress自定义链接的方法,希望对需要的朋友有所帮助!只适合Windows本地环境(服务器上没试过)
让phpStudy2018 Nginx 支持WordPress自定义链接的方法,希望对需要的朋友有所帮助!只适合Windows本地环境(服务器上没试过),默认phpStudy2018 Nginx并不支持WordPress自定义链接,可以通过修改配置文件支持让其支持。
用文本编辑工具打开PHPTutorialnginxconf目录的nginx.conf文件,修改前做个备份,以免修改失误,造成phpStudy无法启动。
搜索autoindex on,找到类似:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
root "I:/phpStudy/PHPTutorial/WWW";
location / {
index index.html index.htm index.php l.php;
autoindex on;
}
在其下面添加设置代码,有两种情况:
一、WordPress程序直接安装在PHPTutorialWWW目录中:
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;
}
二、WordPress程序安装在PHPTutorialWWW子目录中,比如:wordpress:
if (-f $request_filename/wordpress/index.html){
rewrite (.*) $1/wordpress/index.html break;
}
if (-f $request_filename/wordpress/index.php){
rewrite (.*) $1/wordpress/index.php;
}
if (!-f $request_filename){
rewrite (.*) /wordpress/index.php;
}
修改其中的wordpress为你子目录名称。最后重启phpStudy,试试设置自定义链接是否可以打开了。
phpStudy 新版本是8.0,此方法并未在此版本中试过。可以到官网下载适合的版本:https:// .xp.cn/download.html
本文标签:
很赞哦! ()
相关文章
随机图文
-
WordPress自定义主题和背景时出现致命错误的解决方法
如果打开WordPress自定义和背景菜单时提示遇到了致命错误,类似:可以尝试用下面代码解决。 -
WordPress博客首页怎么实现静态
WordPress博客首页静态的方法如下:首先新建一个php文件,文字可以自取,自己要记住,比如index-html.php, -
wordpress实现链接地址的方法
登录wordpress后台,填入网站管理员账号、密码。点击后台设置栏目下的“固定链接”按钮。wordpress提供了6种链接形式供我们选择。 -
wordpress实现图片居中的css代码
在很多人使用wordpress的的过程中,总有人会问道这样的问题,为什么我在wordpress编辑器中能够自由控制图片的居左居右居中显示,而且是文字围绕着图片
留言与评论 (共有 条评论) |