遇到web.config重定向问题; 500内部服务器错误

时间:2018-09-26 13:36:23

标签: redirect web-config

我创建了一个新网站,但一些旧链接不起作用,因此我想使用锚标记将这些链接重定向到我的新主页。我尝试了很多代码片段,但没有任何效果。谁能看到我做错了的事情(我不是程序员),谢谢! -

我刚得到:

  

500-内部服务器错误。您的资源有问题   正在寻找,并且无法显示。

这是我的代码:

<location path="page_contact.html">
  <system.webServer>
    <httpRedirect enabled="true" destination="http://www.mywebsite.com/index.html#contact" httpResponseStatus="Permanent" />
  </system.webServer>
</location>

<location path="portfolio.html">
  <system.webServer>
    <httpRedirect enabled="true" destination="http://www.mywebsite.com/index.html#portfolio" httpResponseStatus="Permanent" />
  </system.webServer>
</location>

0 个答案:

没有答案
相关问题