我想通过htaccess从domain.com/temp/xyx/tech-specs重定向到domain.com/temp/xyx/tech-specs/pemf-ts。我试过下面的代码,但它没有重定向
RS256
答案 0 :(得分:0)
您使用的是HTTP_HOST
变量,但您需要匹配的是REQUEST_URI
。在内部重写规则之前还要保留重定向规则。
有这样的话:
RewriteEngine On
RewriteBase /temp/xyx/
RewriteRule ^(tech-specs)/?$ $1/pemf-ts [L,R=301,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?_route_=$1 [L,QSA]