** 我更改了我的重寫規則,以將我的網站鏈接從www.mydomain.com/index.php?do=/blog更改爲www.mydomain.com/blog這個當我嘗試下面的代碼,它不會讓我改變任何頁面,就像我想去www.mydomain.com/blog,我只是在www.mydomain.com被困住,意味着重定向到我的同一個根目錄頁面,重寫規則在phpfox中的IIS中無法正常工作
我應該爲此做些什麼改變,請大家幫忙。我是一個newbei
我的代碼是**
`<rule name="Redirect index.php" stopProcessing="true">
<match url="index\.php/(.*)" />
<action type="Redirect" url="{R:1}" appendQueryString="false" />
</rule>
<rule name="Rewrite index.php">
<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/{R:1}" />
</rule>
</rules>`
的可能重複[是否有任何phpfox選項可以設置搜索引擎友好的URL?](http://stackoverflow.com/questions/18739871/is-there-any-option-in-phpfox-to-設置SEO友好的URL) – 2013-09-21 10:04:23