0

我的 htaccess 配置正确,可以将访问者从 apples.com 重定向到 oranges.com,但我需要添加什么,以便用户看到 apples.com 而不是 oranges.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
4

0 回答 0