我有:
mydomain.com/folder-name/segment1/segment2
我想将其更改为:
mydomain.com/segment1/segment2
使用 301 重定向。
我试过了:
RewriteCond %{REQUEST_URI} !^/test/.*$
RewriteRule ^(.*)$ /test/$1 [L]
但它不工作
这是我的 htacess 文件:
# #AddHandler application/x-httpd-php53 .php .php5 .php4 .php3
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} ^/b1/.*$
RewriteRule ^(.*)$ /b1/$1 [R=301,L]