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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:优站库 (www.uzkoo.com)阅读:416

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>

猜你想看

王者荣耀系统大更新,排位增加两个ban位,新的嘲讽方式来了
纯银手镯多少钱一个?看完你就全懂了
跑步到底伤不伤膝盖?真相来了
失业保险重大变革,这几件个申领条都变了,很多人都能领到钱了
马天宇的名言
WeChat|刘诗诗头像背景图搭配|边角料构成的小世界
“痔”不在此 这几个好习惯不得痔疮
40岁的女人选精华,别只看美白,关键还要抗衰老
有关诚实的名言
打官司没有证据怎么办,还能打吗?
如何用公积金办理购房贷款?
韩寒博客经典语录
即将到达百万亿规模,二奢“真香”了吗?
首饰是有性格的,不同脸型怎么佩戴才高级?
蒸鱼想要越蒸越嫩,牢记3窍门,不放一粒盐,鲜嫩肉滑还无腥气
大量运动过后,身体肌肉酸痛怎么办?这些方法或许能帮到你!
频繁在D档N档之间切换,是否会弄坏电磁阀?
领过失业保险金影响缴纳养老保险费和以后找工作?真相来了​
彭丽媛同出席2025年上海合作组织峰会外方领导人夫人游览天津海河
万余字教你读懂汽车参数,看完就是半个“汽车专家”,不服来看

推荐站点