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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:合川人才网 (cqhc.163rcw.com)阅读:86

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>

猜你想看

熬小米粥直接下锅煮,难怪熬不出米油,教你正确煮法,浓稠又好喝
近三年越看越上头的10部古装剧,哪部让你越看越上瘾?
香水也讲“血统”,这4大皇室专用香,你用过几个
如果你在乎自己的血糖 那这90种对血糖友好的食物清单值得收藏
这些容易被忽略的交通规则,稍不注意12分不够扣
解决网站因调用谷歌字体库打开慢(适用wordpress和调用谷歌内容的网站)
房龄多大的房子不适合买?有哪些注意事项
自动机械手表为什么能自动运行?什么样的原理可以使其一直工作?
买车时,这5种东西能不装尽量别装,老司机:专坑人傻钱多!
简历上最好不要出现哪些内容?这里通通告诉你
开车走神闯红灯,是进还是退?交警:错与对,扣与不扣分的区别
古代没有内衣,女性穿什么?内衣的发展史被曝光
跑完步不能喝水?
程序员经典面试题,谈一谈Mysql中的事务
“热死了”不是句玩笑话!多地有人确诊热射病,如何预防?
阳宅精妙风水十二招,让你的生活越过越好
女生跟你抱怨,目的不是找解决方法,百分之九十男生都踩雷
护肤品避坑指南:带你看看什么东西不该买
今年很多人失业降薪,房价为什么还要涨?
开自动挡平时要注意这几点,变速箱寿命才更长点,老司机都这样开

推荐站点