去掉win主机下wordpress伪静态的/index.php/
作者:xlnxin发布时间:2021-04-15分类:WordPress教程浏览:999
导读:一般情况下,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系统的主机
相关推荐
- windows10系统如何查看gif动态图片,gif打开软件IrfanView
- 快来制作个性表情包pk吧
- 宝塔面板phpMyAdmin提示:服务器和客户端上指示的HTTPS之间不匹配
- 微信小程序button如何去掉边框设置透明
- 微信小程序input组件解决iphone拼音字符maxlength长度问题
- 微信小程序弹出对话框输入名字
- 微信小程序页面跳转:wx.switchTab、wx.reLaunch、wx.redirectTo、wx.navigateTo、wx.navigateBack”的使用区别介绍
- 小程序默认icon
- 微信小程序image组件中aspectFill和widthfix、scaleToFill对比
- 鸿蒙电脑如何安装打印机驱动
- WordPress教程排行
- 最近发表

