您好我尝试在.htaccess中进行重定向,但没有结果。
这是我的尝试:
RedirectMatch 301 www.magazinfermier.ro/index.php?route=product/category&path=35_49(.*) http://www.fermier.ro/profesionist/vinificatie/laborator//$1
不起作用
Redirect 301 /index.php?route=product/category&path=35_49 http://www.fermier.ro/profesionist/vinificatie/laborator/
不起作用
我做错了什么? thx提前
这是我的htaccess文件的内容:
Options +FollowSymlinks
<FilesMatch "\.(tpl|ini|log)">
Order deny,allow
Deny from all
</FilesMatch>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteCond %{HTTP_HOST} ^(magazinfermier\.ro)(:80)? [NC]
RewriteRule ^(.*) http://www.magazinfermier.ro/$1 [R=301,L]
RewriteCond %{QUERY_STRING} ^route=product/category&path=35_49
RewriteRule ^index\.php$ /profesionist/vinificatie/laborator/? [L,NC,R=301]
这是老东道主: magazinfermier.ro ,这是新的: fermier.ro
答案 0 :(得分:0)
您无法使用RedirectMatch
匹配查询字符串。请在您的根目录中使用mod_rewrite
.htaccess:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^route=product/category&path=35_49
RewriteRule ^index\.php$ /profesionist/vinificatie/laborator/? [L,NC,R=301]