.htaccess

Posted WebLinuxStudy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess相关的知识,希望对你有一定的参考价值。

RewriteEngine On
# 将404页面跳转到 http://abc.com/
ErrorDocument 404 http://abc.com/
# 将 不是abc.com 永久跳转到 http://abc.com
rewriteCond %{http_host} !^abc.com [NC]
rewriteRule ^(.*)$ http://abc.com/$1 [R=301,L]

以上是关于.htaccess的主要内容,如果未能解决你的问题,请参考以下文章