首頁  >  文章  >  CMS教程  >  wordpress去除index.php的方法

wordpress去除index.php的方法

藏色散人
藏色散人原創
2020-09-03 10:18:538490瀏覽

wordpress去除index.php的方法:首先登录wordpress后台;然后依次选择“设置-固定链接”并设置好链接;接着设置wordpress重写规则;最后在wordpress网站目录下新建htaccess文件即可。

wordpress去除index.php的方法

wordpress去掉index.php的方法

主要有两个步骤:

1-1) wordpress设置固定链接

登录wordpress后台,

依次选择‘设置/固定链接’

在出现的页面中,

选择‘自定义结构’

然后根据你的情况,

设置好链接。

1-2) 设置wordpress重写规则

这个需要根据你的web服务器来决定

1-2-1) wordpress apache静态链接重写规则

如果你是 apache,

在 wordpress 网站目录下,

新建一个 .htaccess 文件

并写入下面的代码


RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]

1-2-2) wordpress nginx 静态链接重写规则

如果你的web服务器是 nginx,

编辑 nginx 的配置文件 nginx.cnf

在 server {} 配置内容中,

写入下面的代码

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;
    }
}

然后重启 nginx

这样就能把 wordpress 链接中的 index.php 去掉。

以上是wordpress去除index.php的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn