推客券cmst淘寶客程序在香港虛擬主機(jī)下偽靜態(tài)不正常的解決辦法
今天有用戶在使用windows版內(nèi)香港虛擬主機(jī),安裝了淘寶客程序--推客券cms后,前臺(tái)頁(yè)面顯示不正常。
經(jīng)過(guò)查看該cms發(fā)現(xiàn)是偽靜態(tài)腳本設(shè)置問(wèn)題,解決辦法是,將以下rewrite標(biāo)簽代碼插入到web.config的system.webServer標(biāo)簽之間,然后把web.config文檔傳到web目錄下,即可解決,下面是代碼:
<rewrite>
<rules>
<rule name="yhxia_page" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
如果您不熟悉這個(gè)操作,這邊也已經(jīng)為您做好一份web.config配置文檔
點(diǎn)擊即可下載,放在web目錄下即可。