将 http://example.com 重定向到 http://www.example.com
嘿,
我希望我的网站只能在 www 子域上访问。 我该怎么做?
我正在使用 ASP .NET 3.5、C#、IIS 7,但我将其托管在 GoDaddy 上,因此无法访问 IIS,只能访问 FTP。
谢谢, 担
Possible Duplicate:
Route www link to non-www link in .net mvc
Hey,
I want my website to be accessed only on the www sub domain.
How can i do it?
I'm using ASP .NET 3.5, C#, IIS 7, But i host it on GoDaddy so no access to IIS, just FTP.
Thanks,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用Godaddy上提供的重写模块 。
您可以从 IIS 进行设置,或者将以下内容放入
web.config
中的
下:或者,您可以在 global.asax.cs 上进行此重定向:
Use rewrite module which is available on Godaddy.
You can setup it from IIS or just place in your
web.config
the following under<system.webServer>
:Alternatively you can make this redirection on global.asax.cs:
看看 ScottGu 的这篇博文。您必须手动将规则添加到 web.config 中。
Take a look at this blog post by ScottGu. You'll have to manually add the rule(s) to your web.config.
如果您正在运行 apache Web 服务器,请将其添加到您的 .htaccess 文件中:
If you are running an apache web server, add this in your .htaccess file: