实现301页面跳转之前需要对apache配置做下修改如
apache默认是没有开启mod_rewrite模块的,
1,将
代码如下: #LoadModule rewrite_module modules/mod_rewrite.so
这一行前面的#号去掉,http.conf的站点目录配置,另一种是空间用户常用的
改为
代码如下:LoadModule rewrite_module modules/mod_rewrite.so,
2,将AllowOverride None 改为:AllowOverride All
一、写.htaccess文件,关于301重定向的写法: 1) 常见的将不带WWW的域名转向到带WWW的域名下 举例:网站.com重定向到www.网站.com
代码如下:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^网站.com [NC]
RewriteRule ^(.*)$ http://www.网站.com/$1 [L,R=301]
如果你有服务器权限我们可以在http.conf中修改
二、Apache下vhosts.conf中配置301转向。 代码如下:
<VirtualHost *:80>
DocumentRoot “E:/xxx”
ServerName http://www.域名.net
</VirtualHost>
<VirtualHost *:80>
ServerName 域名.net
RedirectMatch permanent ^/(.*) http://www.域名.net$1
</VirtualHost>
例
将不带WWW的域名转向到带WWW的域名下
代码如下:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^xxx.cn [NC]
RewriteRule ^(.*)$ http://www.xxx,cn/$1 [L,R=301]
常用的客户端请求错误返回代码:
400 - Bad request 错误请求
401 Authorization Required需要验证
403 Forbidden禁止
404 Not Found找不到页面
405 Method Not Allowed
408 Request Timed Out
411 Content Length Required
412 Precondition Failed
413 Request Entity Too Long
414 Request URI Too Long
415 Unsupported Media Type
大家可使用ff浏览firebug来检测是否返回了301状态代码
您可能感兴趣的文章:Apache 虚拟目录和默认首页的设置Apache Rewrite实现URL的301跳转和域名跳转让apache显示目录列表的配置方法apache设置自动将http跳转到https的方法禁止apache显示目录索引的常见方法(apache禁止列目录)Apache mod_rewrite实现HTTP和HTTPS重定向跳转Apache中使非伪静态url跳转到伪静态url的方法Apache中解决动态地址跳转死循环的方法Apache的Rewrite设置多域名301跳转到主域名的方法Apache无法自动跳转却显示目录的解决方法
页面跳转
方法
windows
Apache
301