我的网站是在example.com/waha/下的。现在,我将站点移到根example.com下。
我想301重定向所有的旧链接,如example.com/waha/notice/5803到example.com/notice/5803。
我该怎么做呢?
我当前的.htaccess文件如下所示。
<IfModule mod_rewrite.c>
RewriteEngine On
# NOTE: change this to your actual StatusNet path; may be "/".
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?p=$1 [QSA,L]
</IfModule>
<FilesMatch "\.(ini)">
Order allow,deny
</FilesMatch>
Options -Indexes发布于 2010-03-21 23:20:13
在您的其他mod_rewrite规则前尝试此规则:
RewriteRule ^waha/(.*) /$1 [L,R=301]https://stackoverflow.com/questions/2487542
复制相似问题