我想让 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