我的htaccess配置正确,可以将访问者从apples.com重定向到oranges.com,但是我需要添加什么才能使用户看到apples.com?而不是oranges.com出现在浏览器地址栏中p>
更新:作为替代方案,如何让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