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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:IT技术社区 (bbs.csdn.net)阅读:90

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>

猜你想看

中国十大名花,美呆了
Golang模块代理goproxy.io源码研读
凡人修仙传人界篇攻略大全,职业推荐篇
大模型上车,特斯拉带了个好头吗?
白酒真的越陈越香吗?今天来说说白酒的陈化变化
奔驰C级更换配件价格总结
买电视时,为什么要用手机照一照屏幕
为什么你泡的红茶不香,可能是忽略了这5个细节,别不当回事
养老保险个人账户里的钱可以取出来吗?
发动机气缸异响的几种情况,都给你写上了
SUV要不要安装行李架?安装后带来哪些问题又该注意些什么
鱼缸绿水让你头疼?而且一直换水还是绿的,那是你没抓到根本原因
世界上最香的花是什么花 什么花最香最持久
夫妻一方提供担保,是个人债务还是夫妻共同债务?
痛风为何易在脚趾发作
私家车到底能开多少年?对比各方面才知道
中国人在月球“种菜”将成现实?院士:可提供至少70%食物,基本满足长期生存需求
家里潮湿怎样彻底解决?这里有三个实用方法,任选其一轻松解决
身体过度劳累发出的信号,你都收到了吗?
挡风玻璃划痕怎么修复?

推荐站点