Apache的各种重定向实例

1.访问网站某目录301重定向另外一个域名


ServerName https://www.360docs.net/doc/dc2846796.html,
ServerAlias https://www.360docs.net/doc/dc2846796.html,
DocumentRoot "f:/Apache2.2/htdocs/aa"
#将目录shsx下内容301重定向https://www.360docs.net/doc/dc2846796.html,
Redirect permanent /shsx https://www.360docs.net/doc/dc2846796.html,/


上面例子就是:
将访问https://www.360docs.net/doc/dc2846796.html,/shsx 内容301重定向到https://www.360docs.net/doc/dc2846796.html,
2.访问某个域名重定向到另外一个域名的某个目录


ServerName https://www.360docs.net/doc/dc2846796.html,
#DocumentRoot "C:/Apache2.2/htdocs/htdocs2/aa"
RedirectMatch 301 ^(.*) http://www.cde/lj/

将https://www.360docs.net/doc/dc2846796.html, 所有请求都重定向到 https://www.360docs.net/doc/dc2846796.html,/lj/
3.访问某个域名让浏览器自动跳转到该域名下的某个目录,不显示首页

比如 访问 https://www.360docs.net/doc/dc2846796.html, 直接定位到 https://www.360docs.net/doc/dc2846796.html,/lll

ServerName https://www.360docs.net/doc/dc2846796.html,
RedirectMatch ^/$ https://www.360docs.net/doc/dc2846796.html,/lll

4.将域名A下的页面全部301重定向到域名B去,当网站要换域名的时候用到。


ServerName https://www.360docs.net/doc/dc2846796.html,
Redirect permanent / https://www.360docs.net/doc/dc2846796.html,/
RedirectMatch (.*)\.html$ https://www.360docs.net/doc/dc2846796.html,/


3 、4行还可以这样
RewriteEngine ON
RewriteRule ^(.*)$ https://www.360docs.net/doc/dc2846796.html,/$1 [R=301,L]
5.访问首页index.shtml跳转到域名根下。一般用于SEO优化,防止首页权重分散。

比如访问 https://www.360docs.net/doc/dc2846796.html,/index.shtml 跳转到 https://www.360docs.net/doc/dc2846796.html,

rewriteEngine on
rewriteRule /index.shtml https://www.360docs.net/doc/dc2846796.html,/ [R=permanent,L]
6.输入域名自动跳转到该网站下的某页面,常用于某个重要的产品或事件页面宣传,大公司的网站进经常这样做。


ServerName https://www.360docs.net/doc/dc2846796.html,
ServerAlias https://www.360docs.net/doc/dc2846796.html,
RedirectMatch ^/$ https://www.360docs.net/doc/dc2846796.html,/104.shtml

输入https://www.360docs.net/doc/dc2846796.html, 就跳转到 https://www.360docs.net/doc/dc2846796.html,/104.shtml ,不显示再首页,直接显示104.shtml页面内容。
7.访问域名下某个页面跳转到同域名下另外的一个页面

如访问https://www.360docs.net/doc/dc2846796.html,/main.html 跳转到https://www.360docs.net/doc/dc2846796.html,/index.shtml
在虚拟主机中增加配置如下
Redirect permanent /main.html https://www.360docs.net/doc/dc2846796.html,/index.shtml

相关文档
最新文档