htaccess重定向带问号

时间:2016-08-03 18:08:21

标签: apache .htaccess

您好我试图通过apache conf或.htaccess重定向/fr/welterweight.php这是我网站上的本地文件夹。

http://www.bluek.com/fr/welterweight.php?c=france这是我拥有的另一个网站。

我试过

RewriteCond %{REQUEST_URI} /fr/welterweight.php
RewriteCond %{QUERY_STRING} ^welterweight.php$
RewriteRule ^/?$ http://www.bluek.com/fr/welterweight.php?c=france

但它不起作用

1 个答案:

答案 0 :(得分:2)

此规则应该从站点根目录.htaccess:

开始
RewriteEngine On

RewriteCond %{QUERY_STRING} ^$
RewriteRule ^fr/welterweight\.php$ http://www.bluek.com/$0?c=france [L,R=302]