<dfn id="bq4sp"><code id="bq4sp"><dl id="bq4sp"></dl></code></dfn>
<menuitem id="bq4sp"><mark id="bq4sp"></mark></menuitem>

<menuitem id="bq4sp"></menuitem>
<abbr id="bq4sp"><button id="bq4sp"><pre id="bq4sp"></pre></button></abbr>
  • <strike id="bq4sp"><rt id="bq4sp"></rt></strike>
  • <nobr id="bq4sp"></nobr>
  • 国产亚洲tv在线观看,五月综合婷婷开心综合婷婷,嫩草院一区二区乱码,国产精品18久久久久久麻辣 ,国产精品剧情亚洲二区,国产美熟女乱又伦AV果冻传媒,国产福利高颜值在线观看,无码人妻丰满熟妇啪啪网不卡

    iis下常用程序的偽靜態(tài)規(guī)則列表(包括wordpress、thinkphp)

    shopex discuz2.0 discuz2.5 discuz3.x 淘寶客 ecshop phpwind參照http://m.shinetop.cn/faq/list.asp?unid=797通過主機(jī)面板設(shè)置即可

    wordpress設(shè)置(系統(tǒng)不推薦Windows,如果可以更換為linux系統(tǒng)運(yùn)行更穩(wěn)定):

    第一步:

     登陸wordpress后臺,設(shè)置--固定鏈接--自定義結(jié)構(gòu),選擇設(shè)置下URL格式。

    第二步:

    新建一個文件命名為:web.config,在里面寫入以下規(guī)則,上傳到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偽靜態(tài)規(guī)則:

     手工創(chuàng)建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>


    編輯:三五互聯(lián)
    日期:2014-12-23

    收藏 】 【 打印 】   
    您可對文檔進(jìn)行評分喲~

    勾選遇到的問題提交給我們,收到反饋后保證及時修正更新!

    提交反饋需要先登陸會員帳號

    上一篇:iis6下常用系統(tǒng)的偽靜態(tài)規(guī)則列表(包括wordpress、thinkphp)
    下一篇:apache下常用程序的偽靜態(tài)規(guī)則列表(包括wordpress、thinkphp、dzx3.x)
    若文檔內(nèi)容對您沒有幫助,不能解決問題? 您還可以 咨詢在線客服提交工單搜索常見問題 ,我們將竭誠為您服務(wù)。
      >> 相關(guān)文章
     
    分享至: