如何使用其他名称调用网页

时间:2015-02-06 17:11:13

标签: javascript c# html

我需要在浏览器中输入www.example.com/takethequiz,当用户点击Enter进入www.example.com/Reports.aspx时。

谢谢。

1 个答案:

答案 0 :(得分:0)

1)创建.htaccess 2)写下这个:

Options +FollowSymlinks
RewriteEngine on
rewriterule ^takethequiz(.*)$ http://otherdomain.com/Reports.aspx$1 [r=301,nc]

3)修改" otherdomanin"与您的域名:)