Apache rewrite规则的配置过程

简介:

Apache rewrite规则的配置过程

服务器端:192.168.10.201 (RHEL 5.9)
客户端:192.168.10.40(Linux)
        192.168.10.246 (windows xp)

1.安装Apache
[root@localhost ~]# yum -y install httpd
[root@localhost ~]# ls /etc/httpd/modules/mod_rewrite.so
mod_rewrite.so  ##检查确定有此模块

vim /etc/httpd/conf/httpd.conf 
LoadModule rewrite_module modules/mod_rewrite.so ##检查确定有此行
2.创建基于域名的虚拟主机
[root@localhost ~]# vim /etc/httpd/conf.d/vhosts.conf 
<VirtualHost *:80>
ServerAdmin   hunk.test.com
DocumentRoot  "/var/www/html/hunk"
ServerName  192.168.10.201
RewriteEngine on               ##打开rewirte功能
Include conf.d/hunk-rewrite.conf
</VirtualHost>

3.写rewrite规则
[root@localhost ~]# vim /etc/httpd/conf.d/hunk-rewrite.conf 
RewriteCond %{HTTP_HOST} hunk.test.com [NC]
RewriteRule  ^(.*)/index.html$  http://hunk.test.com/test.html [L,R=302]

4.在/var/www/html/hunk 添加测试页面。
[root@localhost ~]# vim /var/www/html/hunk/index.html 
<html>
<head>
<title>
test page
</title>
</head>
<body >
<p align="center">
<font size="32px" color="red">
this is test page !page jump failure!
</font>
</p>
</body>
</html>

[root@localhost ~]# vim /var/www/html/hunk/hunk.html 
<html>
<head>
<title>
test page
</title>
</head>
<body >
<p align="center">
<font size="32px" color="red">
this is test page !page jump success!
</font>
</p>
</body>
</html>


客户端设置
5.修改hosts文件
xp:C:\Windows\System32\drivers\etc\hosts
192.168.10.246 hunk.test.com  ##添加此行
  访问hunk.test.com/index.html 
                     this is test page !page jump success!

wKiom1RTU1DSiFOZAAGpXNVVQrg789.jpglinux :
[root@localhost ~]# vim /etc/hosts 
192.168.10.40        hunk.test.com
[root@localhost ~]# elinks --dump hunk.test.com/index.html
                     this is test page !page jump success!

wKiom1RTU9_TbdNOAAMlTbzyLlw807.jpg


注意:

1.书写rewrite需要知道正则表达式的知识。

在RewriteRule  ^(.*)/index.html$  http://hunk.test.com/test.html [L,R=302]中,^表示以某某开头,$表示以某某结尾, .(点)表示匹配任意单个字符,*表示匹配前面的子表达式零次或多次(大于等于0次)

2.这里搭建的是基于域名的虚拟主机的web服务器,所以下面两行代码是在/etc/httpd/conf.d/vhosts.conf书写。说明是此服务器也就是hunk.test.com 打开rewrite功能,并应用规则。

RewriteEngine on               ##打开rewirte功能
Include conf.d/hunk-rewrite.conf

 如果不是基于虚拟主机的web服务器,上面两行需要在/etc/httpd/conf/httpd.conf书写。




      本文转自独弹古调  51CTO博客,原文链接:http://blog.51cto.com/hunkz/1570459,如需转载请自行联系原作者





相关文章
|
2月前
|
Linux 网络安全 Apache
CentOS 7.2配置Apache服务httpd(上)
CentOS 7.2配置Apache服务httpd(上)
305 1
|
2月前
|
存储 分布式计算 druid
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(一)
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(一)
44 1
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(一)
|
2月前
|
缓存 前端开发 应用服务中间件
CORS跨域+Nginx配置、Apache配置
CORS跨域+Nginx配置、Apache配置
251 7
|
2月前
|
消息中间件 分布式计算 druid
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(二)
大数据-152 Apache Druid 集群模式 配置启动【下篇】 超详细!(二)
46 2
|
2月前
|
存储 消息中间件 druid
大数据-151 Apache Druid 集群模式 配置启动【上篇】 超详细!
大数据-151 Apache Druid 集群模式 配置启动【上篇】 超详细!
93 1
|
2月前
apache+tomcat配置多站点集群的方法
apache+tomcat配置多站点集群的方法
40 4
|
2月前
|
负载均衡 应用服务中间件 Apache
Tomcat负载均衡原理详解及配置Apache2.2.22+Tomcat7
Tomcat负载均衡原理详解及配置Apache2.2.22+Tomcat7
57 3
|
2月前
|
Linux PHP Apache
CentOS 7.2配置Apache服务httpd(下)
CentOS 7.2配置Apache服务httpd(下)
59 1
|
2月前
|
存储 Apache 开发工具
apache的主要目录结构及常见的配置选项的详细说明(图例展示)
apache的主要目录结构及常见的配置选项的详细说明(图例展示)
|
3月前
|
Apache
多应用模式下,忽略项目的入口文件,重写Apache规则
本文介绍了在多应用模式下,如何通过编辑Apache的.htaccess文件来重写URL规则,从而实现忽略项目入口文件index.php进行访问的方法。

推荐镜像

更多