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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:先知社区 (xz.aliyun.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>

猜你想看

“大辞职”、“大洗牌”……2022年职场流行语折射生活巨变
开车回老家,走高速还是走国道?老司机和新手区别在这,豁然开朗
300块和3000块的眼镜,有啥区别?一文为大家揭秘,别再交智商税
二维码会被人类扫完吗?能用多少年?
限量 2500 双!Tinker 亲自操刀!Jordan 新战靴居然自带保险箱
收到违章短信别急着交罚款,5种情况可以撤销,不扣分也不罚款
为什么交警提醒,车上别留挪车电话?万一遇上损失严重
参加饭局,跟人聊天要管住嘴,这4种情商低的话不要说
为什么网上买酒比超市便宜,靠谱吗?看完这3点,你就知道了
怎么养长寿花?最怕5怕,避开了才能养爆盆
【生活常识】蒙医养生带您了解蒙古族生活中的那些医学常识
家用投影机该怎么选?自动无感对焦了解一下
增强免疫力,咱不从头开始,从舌尖上与脚尖上开始
让剩米饭,快速变成高端大气的港式美食——芝士焗猪排
盘点海南各市县经典小吃,本地人都不一定全知道!
如何开好手动挡汽车,学会这几个技巧就可以了
二手房交易时先交首付还是先过户
爱因斯坦错了!2022物理诺奖公布,提及的贝尔不等式到底讲了啥?
王者荣耀射手教学
汽车停太阳下面,车内高温能蒸熟鸡蛋?修车师傅说出清凉秘诀

推荐站点