我有以下完美的规则,但是我的旧网站网址有 .html 而我的新网站没有。是否可以在重定向之前剥离 .html?例如
www.oldsite.com/mypage.html
被重定向到
www.newsite.com/subdir/mypage/
例如
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.oldsite.com$ [NC]
RewriteRule ^(.*)$ http://www.newsite.co.uk/subdir/$1 [R=301,L]