Wes*_*ley 9 .htaccess http-status-code-301 url-redirection
我如何301重定向,例如:一个子目录/Blog/来/blog/用的.htaccess?
Redirect 301 /Blog /blog
Run Code Online (Sandbox Code Playgroud)
或者使用类似http://www.htaccessredirect.net/index.php的内容
我立刻想到的方式是:
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——但是就这样了。