iis下常用程序的伪静态规则列表(包括wordpress、thinkphp)

Mr.zhuMr.zhu2025-09-03 21:30:10来源:合川人才网 (www.cqhcjob.com)阅读:76

shopex discuz2.0 discuz2.5 discuz3.x 淘宝客 ecshop phpwind参照http://www.west.cn/faq/list.asp?unid=797通过主机面板设置即可

wordpress设置(系统不推荐Windows,如果可以更换为linux系统运行更稳定):

第一步:

 登陆wordpress后台,设置--固定链接--自定义结构,选择设置下URL格式。

第二步:

新建一个文件命名为:web.config,在里面写入以下规则,上传到wwwroot目录。

<?xml version="1.0" encoding="UTF-8"?>
  <configuration>
   <system.webServer>
     <rewrite>
       <rules>
         <rule name="URL" stopProcessing="true">
          <match url="^(.*)$" />
          <conditions>
             <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
           </conditions>
          <action type="Rewrite" url="index.php"/>
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

Thinkphp伪静态规则:

 手工创建web.config文件到站点根目录

<?xml version="1.0" encoding="UTF-8"?>
   <configuration>
     <system.webServer>
       <rewrite>
         <rules>
            <rule name="Imported Rule 1" stopProcessing="true">
              <match url=".*\.(?:gif|jpg|png|css|js|txt|jpeg|swf|flv)" />
             <action type="Rewrite" url="{R:0}" />
           </rule>
            <rule name="Imported Rule 2">
             <match url="/httpd(?:\.ini|\.parse\.errors)" />
              <action type="CustomResponse" url="/" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
            </rule>
           <rule name="Imported Rule 3" stopProcessing="true">
              <match url="^(?!/index.php)(?!/admin.php)(.*)$" ignoreCase="false" />
              <conditions logicalGrouping="MatchAll">
              <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
              </conditions>
             <action type="Rewrite" url="/index.php/{R:1}" />
           </rule>
        </rules>
      </rewrite>
   </system.webServer>
</configuration>

猜你想看

夏季跑步是晨跑好还是夜跑好,有什么区别?
高速上车坏担心拖车被坑?这样做方便快捷,不会花大价钱
手游知识科普:为何充值大多都是6元起步,648封顶?
阴道口有个肉芽是正常现象吗?了解一下原因!别吓唬自己
女跑友切记跑完步后不要马上洗澡
医保卡使用技巧大揭秘,让你看病就医更省钱!
四部值得N刷的电视剧,你追过几部呢
电动车电池寿命到底有多长?怎么用才会让寿命变长?
真皮和人造革如何区分?
绿茶冲泡最忌先放茶叶再倒水?如何泡出一杯鲜醇好喝的绿茶?
自制炸鸡店好吃的麦乐鸡块,外焦里嫩,鲜嫩多汁,吃一口就会爱上
4个易被忽略的衰老信号
经常搞“小动作”的越南和我国的旅游大省云南相比怎么样?
秋季头发爱出油怎么办?3个小妙招要记牢
汽车小知识:洗车也是一门学问
明明白白学中医|中医治病基本原则
女生头像丨我可太爱章若楠了
过敏自救指南|100个中国人里约有40个会过敏 为什么过敏的人越来越多?
企业邮箱如何设置星标邮件
用这3个技巧满足,轻而易举打动女人

推荐站点