1
我主持一個WordPress網站IIS 8
我收到以下錯誤:WordPress的500(URL重寫模塊錯誤。)
Failed to load resource: the server responded with a status of 500 (URL Rewrite Module Error.)
當我上傳新的圖片和顯示。 如果我去wp-content
並給予IIS_USRS
訪問,則圖像的作品,當我添加一個新的形象我不得不刪除IIS_USRS
,然後重新添加了圖像的工作
如果我使用下面的web配置的網站永遠不會加載
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wordpress" patternSyntax="Wildcard">
<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>
IIS URL重寫模塊是一個單獨的下載,所以你安裝它? –
是的,它是安裝,我使用它也重定向非SSL到其他網站上的SSL –