对不起,我对.htaccess
的东西不太了解。
我有一个
的遗留链接HTTP // mysubdomain.mysite.com / legacy.aspx
如何将此链接重定向到:
http://mysite.com/newlocation/
提前致谢!
答案 0 :(得分:1)
尝试将以下内容添加到mysubdomain.mysite.com
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^mysubdomain\.mysite\.com$ [NC]
RewriteRule ^legacy\.aspx$ http://mysite.com/newlocation/ [L,R=301,NC]
答案 1 :(得分:-2)
您可以使用ASP重定向吗? 如果只是当人们点击那个页面时,它应该重定向?
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"