IIS7的wordpress偽靜態(tài)設(shè)置
部分使用香港虛擬主機(jī)的用戶在win空間下不懂得如何配置偽靜態(tài),win空間采用iis7+版本,通過(guò)web.config配置文件進(jìn)行偽靜態(tài)設(shè)置,而且php版本也是通過(guò)該文件進(jìn)行配置。
您需要將php版本設(shè)置為5.4并且把下面的偽靜態(tài)腳本寫(xiě)入web.config文件中,下面是rewrite代碼
<rewrite> <rules> <rule name="Main Rule" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:0}" /> </rule> <rule name="wordpress" patternSyntax="Wildcard"> <match url="*" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <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>
當(dāng)然,老樣子,這邊已經(jīng)為您制作好一份Php5.4設(shè)置和偽靜態(tài)的wordpress4.5的偽靜態(tài)文web.config文件了,您只需下載后,放到web目錄內(nèi)即可。