windows中apache 301页面跳转实现方法
实现301页面跳转之前需要对apache配置做下修改如
apache默认是没有开启mod_rewrite模块的,
1,将
这一行前面的#号去掉,http.conf的站点目录配置,另一种是空间用户常用的
改为
2,将AllowOverride None 改为:AllowOverride All
一、写.htaccess文件,关于301重定向的写法:
1) 常见的将不带WWW的域名转向到带WWW的域名下 举例:网站.com重定向到www.网站.com
如果你有服务器权限我们可以在http.conf中修改
二、Apache下vhosts.conf中配置301转向。
例
将不带WWW的域名转向到带WWW的域名下
常用的客户端请求错误返回代码:
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默认是没有开启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状态代码
相关推荐
服务器端攻城师 2020-05-04
etedyh 2020-01-02
咻咻ing 2010-11-09
lsn0LSN 2014-10-23
hwhanwan 2011-10-19
zhangpuego 2013-03-18
greatking 2013-01-05
单调的低调 2015-04-09
奶牛老爹 2011-05-04
qiuqiang 2016-04-07
jingz 2011-09-09
bocaimomo 2013-08-01
leeagle 2012-12-23
ibatsiSpring 2012-08-11
xiajlxiajl 2017-03-08
清风落叶 2016-08-08
lihangorz 2018-08-09
leehbing 2019-04-20
liuchen0 2017-06-06