将重定向的网址显示在浏览器地址栏中而不是原始网站网址中需要什么?

时间:2013-09-22 18:46:50

标签: javascript .htaccess rewrite

我的htaccess配置正确,可以将访问者从apples.com重定向到oranges.com,但是我需要添加什么才能使用户看到apples.com?

更新:作为替代方案,如何让htaccess创建一个可以通过javascript获取的变量(例如苹果)?

rewriteengine on
rewritecond %{HTTP_HOST} ^www.apples.com$ [OR]
rewritecond %{HTTP_HOST} ^apples.com$
rewriterule ^domainchange\/$ "http\:\/\/oranges\.com\/" [R=301,L] #numbers
rewritecond %{HTTPS} off
rewritecond %{HTTP_HOST} ^www.oranges.com$ [OR]
rewritecond %{HTTP_HOST} ^oranges.com$
rewriterule ^$ "https\:\/\/oranges\.com\/" [R=301,L] #numbers


Options -Indexes

0 个答案:

没有答案