无插件纯代码方式去除wordpress链接中的index.php

2018-11-02    来源:学做网站论坛

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

对于学建站新手,推荐刚开始使用wordpress程序学习做网站,由于wordpress是PHP编程语言,它与LINUX空间配合很好,但仍有很多做网站新手会购买到windows属性空间,就导致了安装wordpress程序之后,伪静态出现链接中含有index.php的情况。(相关知识:网站伪静态规则)

无插件纯代码方式去除wordpress链接中的index.php

去除链接中的index.php有二个方法:

  • 一个是使用WORDPRESS插件;
  • 另一种是使用纯代码修改。

下面讲讲如何使用无插件纯代码方式去除网站链接中的index.php

  1. 首先桌面新建一个txt文本,然后复制以下代码至txt文件中:
    
    
    [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]
  2. 然后保存文本文件为httpd.ini文件;再将httpd.ini文件上传至自己做网站的空间根目录。
  3. 刷新网站首页,就会看到链接中的index.php被去除了。

标签: linux 代码 建站

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:wordpress自定义栏目设置方法

下一篇:WordPress网站图片自动添加alt信息的两种方法