我正在尝试重定向我的网址的某些部分,但出于某种原因,它在重定向后剥离了目录...尝试了很多东西,这里是下面的信息
当我转到此链接时
http://example.com/weddings/peacock-wedding.php
重定向到
http://www.example.com/peacock-wedding.php
剥离
/weddings/
我的htaccess代码
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [nocase]
RewriteRule ^(.*) http://www.example.com/$1 [last,redirect=301]
请帮忙!
答案 0 :(得分:0)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(example.com)?$
RewriteRule ^(.*)$ http://www.example.com/weddings/$1 [R=301,L]