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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:王老吉凉茶 (www.wljhealth.com)阅读:96

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年前1.8万买钻戒如今只值180元 为何不保值:业内人士科普
车载充气泵你会用吗?看看都要躲过哪些坑
瑜伽体式和呼吸如何平衡?
神秘代号“304”“316”?深扒不锈钢家族“内幕”
CVT汽车的冷保护,到底在保护什么?
离婚证可以在异地办理吗?
LV包包为什么叫驴包?LV包包有哪些经典款式值得入手?
学会这7种掉头,绿灯4种,红灯3种,再也不怕路口掉头
劳动合同到期不续签,公司应该如何补偿员工呢?
冬天加油,必须“加200”还是“加满”?
员工主动辞职的7个棘手问题
社保视同缴费年限,如何认定?
磷酸铁锂电池与铅酸电池相比有什么优势?
什么人不适合喝红豆汤
手动挡的起步停车步骤是什么?
请收好这份境外社保免缴证明申请指南
@家长,远离孩子视力保护的7个误区
“高薪”背后可能有陷阱 谨防招聘诈骗套路多
剧情电影《天才少女》解说文案

推荐站点