0

我想让 htaccess 将 oranges.info 重定向到 example.com/about.html?=fruit

这是我的 htaccess 文件,不幸的是,它只进行重定向而不添加变量。有任何想法吗?

Options +FollowSymLinks 
rewriteengine on
rewritecond %{HTTP_HOST} ^www.oranges.info$ [OR]
rewritecond %{HTTP_HOST} ^oranges.info$
rewriterule ^domainfolder\/(.*)$ "http\:\/\/example\.com\/about\.html$1?fruit" [R=301,QSA,L] 

Options -Indexes
4

1 回答 1

1

您的规则语法不正确:

rewritecond %{HTTP_HOST} ^(www\.)?oranges\.info$ [NC]
rewriterule ^ http://example.com/about.html?fruit [R=301,QSA,L]

确保在不同的浏览器中进行测试。

于 2013-09-23T11:50:05.227 回答