去掉win主机下wordpress伪静态的/index.php/
作者:xlnxin发布时间:2021-04-15分类:WordPress教程浏览:619
导读:一般情况下,wordpress博客系统使用windows系统的服务器主机设置的固定链接的结构中,会多出/index.php/部分,如https://www.boke8.n...
一般情况下,wordpress博客系统使用windows系统的服务器主机设置的固定链接的结构中,会多出/index.php/部分,如https://www.boke8.net/index.php/1.html形式,这样结构的URL无论是在美观或SEO方面都让人感觉到不友好,不过可以通过简单的方法去掉index.php。
wordpress去掉index.php的方法步骤:
- 使用文本工具创建一个命名为httpd,后缀为.ini格式的文件(即httpd.ini文件)
- 编辑httpd.ini文件,在其中添加以下代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
[ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files # from accessing through HTTP # Rules to ensure that normal content gets through RewriteRule /sitemap.xml /sitemap.xml [L] RewriteRule /favicon.ico /favicon.ico [L] # For file-based wordpress content (i.e. theme), admin, etc. RewriteRule /wp-(.*) /wp-$1 [L] # For normal wordpress content, via index.php RewriteRule ^/$ /index.php [L] RewriteRule /(.*) /index.php/$1 [L]
- 保存文件后,上传到wordpress程序根目录
- 然后登陆博客后台,重新设置固定链接即可。
PS:使用wordpress程序还是推荐使用Linux系统的主机
相关推荐
- php结合layui前端实现 多图批量上传
- layui图标记录
- 小程序img_sec_check图片检测出行"errcode":47001错误解决方法
- 双击excel打开不显示任何内容,只能在excel里面打开文件解决方法
- 小程序saveVideoToPhotosAlbum安卓手机可以下载MP4苹果手机不能下载解决方法
- 小程序逆向错误之 typeof3 is not a function
- 几种常用接口调用方式
- 小程序e.target.dataset和e.currentTarget.dataset区别
- iis服务器https301跳转重定向到http的方法
- 如何优化wordpress性能提升加载速度
- WordPress教程排行
- 最近发表