-1
我想重定向我的網站nitroindia.org到www.nitroindia.org在Windows主機w.ith web.config文件。我更換了web.config文件,但它給了我一個由此產生的500內部服務器錯誤。我想重新定向nitroindia.org到www.nitroindia.org在godaddy窗口託管
<?xml version=�1.0? encoding=�utf-8? ?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=�Redirect for ML2? stopProcessing=�true�>
<match url=�.*� />
<conditions>
<add input=�{HTTP_HOST}� pattern=�^nitroindia.org$� />
</conditions>
<action type=�Redirect� url=�http://www.nitroindia.org/{R:0}� redirectType=�Permanent� />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
我的默認文件名是index.html的
剛試過www.nitroindia.org,500錯誤太多? – Godinall
可能的重複項:http://stackoverflow.com/q/3197319/和http://stackoverflow.com/q/17714732/ –