wordp">
智慧建站平台,千套网站模板,免费随心选!

您现在的位置: 首页>>网站教程

wordpress去除index.php的方法

来源: 发布时间:2020-09-03热度:224 ℃
wordpress去除index.php的方法:首先登录wordpress后台;然后依次选择“设置-固定链接”并设置好链接;接着设置wordpress重写规则;最后在wordpress网站目录下新建h···

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

wordpress去除index.php的方法

wordpress/" target="_blank">wordpress去掉index.php的方法

主要有两个步骤:

1-1) wordpress设置固定链接

登录wordpress后台,

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

在出现的页面中,

选择‘自定义结构’

然后根据你的情况,

设置好链接。

1-2) 设置wordpress重写规则

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

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

如果你是 apache,

在 wordpress 网站目录下,

新建一个 .htaccess 文件

并写入下面的代码

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
登录后复制

本文地址:http://gzyunji.cn