今天打開(kāi)自己的博客,發(fā)現(xiàn)網(wǎng)站的內(nèi)頁(yè)都不能訪問(wèn)了,我用的是Windows主機(jī)空間,主機(jī)支持Rewrite。win主機(jī)不能像Linux主機(jī)空間那樣直接在后臺(tái)設(shè)置固定鏈接,如果你要修改的話,鏈接中一定要帶index.php這個(gè),否則就會(huì)提示系統(tǒng)找不到文件。。問(wèn)了度娘和谷歌,答案是可以通過(guò)404跳轉(zhuǎn)或httpd.ini達(dá)到wordpress固定鏈接靜態(tài)化的目的,但怎么也實(shí)現(xiàn)不了。無(wú)奈,又問(wèn)度娘和谷歌,終于找到一種方法,使用web.config設(shè)置wordpress固定鏈接靜態(tài)化:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<httpErrors errorMode=”Detailed” />
<asp scriptErrorSentToBrowser=”true”/>
<rewrite>
<rules>
<clear />
<rule name=”wordpress” stopProcessing=”true”>
<match url=”.*” />
<conditions logicalGrouping=”MatchAll”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php” />
</rule>
<rule name=”chinese tag” stopProcessing=”true”>
<match url=”/tag/(.*)” />
<conditions logicalGrouping=”MatchAll” />
<action type=”Rewrite” url=”/index.php?tag={R:1}” />
</rule>
<rule name=”www” stopProcessing=”true”>
<match url=”.*” />
<conditions>
<add input=”{HTTP_HOST}” pattern=”^urlt$” />
</conditions>
<action type=”Redirect” url=”http://www.url/{R:0}” redirectType=”Permanent” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
特別說(shuō)明:
1. 該段代碼只有IIS 7下能生效。
更多信息請(qǐng)查看IT技術(shù)專欄
2025國(guó)考·省考課程試聽(tīng)報(bào)名