免费发布信息
微信公众号

让phpStudy2018 Nginx 支持WordPress自定义链接

   来源:黔优网责任编辑:优优  时间:2024-09-22 13:48:46 浏览量:0

下面由wordpress/" target="_blank">wordpress教程栏目给大家介绍让phpstudy2018 nginx 支持wordpress自定义链接的方法,希望对需要的朋友有所帮助!

只适合Windows本地环境(服务器上没试过),默认phpStudy2018 Nginx并不支持WordPress自定义链接,可以通过修改配置文件支持让其支持。

用文本编辑工具打开PHPTutorial\nginx\conf目录的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;
        }

在其下面添加设置代码,有两种情况:

立即学习“PHP免费学习笔记(深入)”;

一、WordPress程序直接安装在PHPTutorial\WWW目录中:

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程序安装在PHPTutorial\WWW子目录中,比如: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://www.xp.cn/download.html

以上就是让phpStudy2018 Nginx 支持WordPress自定义链接的详细内容,更多请关注本网内其它相关文章!

 
 
 
没用 0举报 收藏 0
免责声明:
黔优网以上展示内容来源于用户自主上传、合作媒体、企业机构或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表黔优网官方立场,请读者仅做参考。本文标题:让phpStudy2018 Nginx 支持WordPress自定义链接,本文链接:https://www.qianu.com/help/46034.html,欢迎转载,转载时请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何违法信息,请您立即点此【投诉举报】并提供有效线索,也可以通过邮件(邮箱号:kefu@qianu.com)联系我们及时修正或删除。
 
 

 

 
推荐图文
推荐帮助中心
最新帮助中心