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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:化龙巷 (bbs.hualongxiang.com)阅读:34

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>

猜你想看

王者荣耀:盘点最难触发被动的几位英雄,李白赫然在榜
特斯拉 Cyberquad 儿童摩托车正式上架中国官网,售价 11990 元
交警提醒:此类违章可以申请撤销
漂亮对男人更有吸引力吗?研究发现,女性拥有这3样东西才可以
买草莓时,别只挑大红色的拿!教你5个窍门,保证草莓个个香甜
暗藏消费“陷阱”!揭秘低价老年旅游团套路
打耳洞实属医美,消费之前看好有无“三证”
程序员面试中的十个常见错误
个人交社保和单位交社保,到底哪种方式更好?
如何正确区分过敏性鼻炎和感冒?一图看懂
房地产税为什么放缓了?
牛肉怎样炖?才软烂鲜香,老师傅偷偷告诉我,只需一勺它轻松搞定
为什么西方国家不炒菜只有中国炒?不是懒,而是这几个原因
珠宝玉石首饰行业刮起“糖果风”
打官司离婚,怎么写起诉状?起诉状有3部分,注意7个细节要点
在裁员这件事上,硅谷大厂的“心眼”还真多
如何通过三个动作判断女人是否随便?99%的男人不了解
中国十大名楼
田曦薇绝美壁纸,解锁黑裙造型的百变魅力
维修工:教你两个老办法,积碳全清光

推荐站点