您好我试图通过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
但它不起作用
答案 0 :(得分:2)
此规则应该从站点根目录.htaccess:
开始RewriteEngine On
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^fr/welterweight\.php$ http://www.bluek.com/$0?c=france [L,R=302]