301重定向.htaccess

Wes*_*ley 9 .htaccess http-status-code-301 url-redirection

我如何301重定向,例如:一个子目录/Blog//blog/用的.htaccess?

And*_*rew 3

我立刻想到的方式是:

RewriteEngine on
RewriteBase /path/to/your/web/app
RewriteRule ^Blog$ blog [R=301,L]
RewriteRule ^Blog/(.*)$ blog/$1 [R=301,L]
Run Code Online (Sandbox Code Playgroud)

可能有比 mod_rewrite 更好的方法,而且我不能 100% 确定外部重定向是否会正常工作——您可能需要完整的 URL——但是就这样了。