服务器 | 设计圈 |


777yjt 的BLOG 
留言  收藏

2008 11.19 Wed
      1
2345678
9101112131415
16171819202122
23242526272829
30      
«» 2008 - 11 «»

搜索BLOG文章

 

博客基本信息
用户名: 777yjt
等级: 四星会员
威望: 4360
金钱: 10875
在线时间: 2786 分钟
日志总数: 2175
评论数量: 24
访问次数: 92196
建立时间: 2006-10-07




XML RSS 2.0 WAP

作者: 777yjt   发表日期: 2006-12-01
复制 TAG: 收藏



---- 本文旨在提供如何用Apache重写规则来解决一些常见的URL重写方法的问题,通过常见的实例给用户一些使用重写规则的基本方法和线索。

一、为什么需要用重写规则

---- 网站的生命在于不断地进行更新和维护,根据业务发展的需求转移服务器进行维护、重新组织目录结构、变换URL甚至改变到新的域名等情况是经常发生的。为了让客户不会因此受到任何影响,最好的方法就是使用Apache Rewrite Rule(重写规则)。

二、重写规则的作用范围

---- 1.使用在Apache主配置文件httpd.conf中。
---- 2.使用在httpd.conf里定义的虚拟主机配置中。
---- 3.使用在基本目录的跨越配置文件.htaccess中。

三、重写规则的应用条件

---- 当用户的Web请求最终被导向到某台Web服务器的Apache守护进程,Apache根据配置文件判断该请求是主配置还是虚拟主机,再根据用户在浏览器中请求的URL来匹配重写规则,并且根据实际的请求路径匹配.htaccess中的重写规则,最后把请求的内容传回给用户。该响应可能有2种。

---- 1.将请求内容外部重定向(Redirect)到另一个URL
---- 让浏览器再次以新的URL发出请求(R=301或者R=302,临时的或是永久的重定向)。

---- 例如,一个网站有正规的URL和别名URL,对别名URL进行重定向到正规URL,或者网站改换成了新的域名,则把旧的域名重定向到新的域名。

---- 2.由Apache内部子请求代理产生新的内容送回给客户[P,L]
---- 这是Apache内部根据重写后的URL,通过代理模块请求内容并将最终内容送回给客户,客户端浏览器不必再次请求,浏览器中的URL不会被重写,但实际内容由Apache根据重写规则后的URL生成。

---- 例如,在公司防火墙上运行的Apache启动这种代理重写规则,代理对内部网段上的Web服务器的请求。

四、重写规则怎样工作

---- 我们假定在编译Apache时已经把mod_rewrite编译成模块,确信您的httpd.conf中有LoadModule rewrite_module libexec/mod_rewrite.so,并且在Addmodule中有Addmodule mod_rewrite.c,则可以使用重写规则。

---- 当外部请求到达Apache,Apache调用重写规则中的定义来重写由用户浏览器指定请求的URL,最后被重写的URL如果是重定向,则送交浏览器做再一次请求;如果是代理则把重写后的URL交给代理模块请求最终的内容(Content),最后把内容送回给浏览器。

五、何时使用.htaccess中的重写规则定义

---- 假如您对网站内容所在的服务器没有管理员权限,或者您的网站内容放在ISP的服务器上托管,无法改写主配置文件,但是您对Web站点内容所在的目录有写权限,则可以设置自己的.htaccess文件达到同样的目的。但您需要确定主配置文件中对您的网站所在的目录定义了下面的内容,否则您的.htaccess不会工作。

---- < Directory /usr/local/apache/htdocs/www.abc.com> options indexes followsymLinks
---- allowoverride all
---- < /Directory >

六、应用举例

---- 假定Apache被编译安装在主机192.168.1.56的/usr/local/apache目录下面,同时编译了重写和代理模块。

---- 1.隐藏Apache下的某个目录,使得对该目录的任何请求都重定向到另一个文件
---- (1)httpd.conf的实现方法
---- 我们将下面的部分放到/usr/local/apache/conf/httpd.conf中。

---- < Directory "/usr/local/apache/htdocs/manual/"> options Indexes followsymlinks
---- allowoverride all
---- rewriteengine on
---- rewritebase /
---- rewriterule ^(.*)$ index.html.en [R=301]
---- < /Directory >

---- 注: “rewriteengine on”为重写引擎开关,如果设为“off”,则任何重写规则定义将不被应用,该开关的另一用处就是如果为了临时去掉重写规则,可以将引擎开关设为“off”再重新启动Apache即可,不必将其中的各条重写规则注释掉。

---- “rewritebase /”的作用是如果在下面的rewriterule定义中被重写后的部分(此处为文件名index.html.en)前面没有“/”,则表明是相对目录,相对于这个rewritebase后面的定义也就是/usr/local/apache/htdocs/index.html.en,否则,如果此处没有“rewritebase /”这一项,则被重写成http://192.168.1.56/usr/local/apache/htdocs/manual/index.html.en,显然是不正确的。

---- 我们也可以不用“rewritebase /”,而是将其改为如下部分。
---- rewriteengine on
---- rewriterule ^(.*)$ /index.html.en [R=301]
---- 或者更改为:
---- rewriteengine on
---- rewriterule ^(.*)$ http://192.168.1.56/index.html.en [R=301]

---- (2).htaccess的实现方法
---- 我们将下面的部分放到httpd.conf中。

---- < Directory "/usr/local/apache/htdocs/manual/"> options Indexes followsymlinks
---- allowoverride all
---- < /Directory >

---- 然后将下面的部分放到/usr/local/apache/htdocs/manual/.htaccess中。
---- rewriteengine on
---- rewritebase /
---- rewriterule ^(.*)$ index.html.en [R=301]

---- 注: 对文件.htaccess所做的任何改动不需要重启动Apache。

---- 您还可以利用.htaccess方案将这个manual目录重定向到用户jephe自己的主目录。
---- rewriteengine on
---- rewritebase /~jephe/
---- rewriterule ^(.*)$ $1 [R=301]

---- 这样,对manual目录下任何文件的请求被重定向到~jephe目录下相同文件的请求。

---- 2.将http://www.username.domain.com对于username的主页请求转换为对http://www.domain.com/username的请求
---- 对于HTTP/1.1的请求包括一个Host: HTTP头,我们能用下面的规则集重写http://www.username.domain .com/anypath到/home/username/anypath。
---- rewriteengine on
---- rewritecond %{HTTP_HOST} ^www.[^.]+.host.com$
---- rewriterule ^(.+) %{HTTP_HOST}$1 [C]
---- rewriterule ^www.([^.]+).host.com(.*) /home/$1$2

---- 注: “rewritecond”表明是条件重写规则,当满足后面定义的条件后才会应用下面的重写规则,“rewritecond”有各种变量,请查阅相关文档。

---- 3.防火墙上的重写规则代理内部网段上服务器的请求
---- NameVirtualhost 1.2.3.4
---- < Virtualhost 1.2.3.4:80 > servername www.domain.com
---- rewriteengine on
---- proxyrequest on
---- rewriterule ^/(.*)$ http://192.168.1.3/$1 [P,L]
---- < /Virtualhost >

---- 注: 当外部浏览器请求http://www.domain.com时,将被解析到IP地址1.2.3.4,Apache交由mod_rewrite处理,转换成http://192.168.1.3/$1后再交由代理模块mod_proxy,得到内容后传送回用户的浏览器。

---- 4.基本预先设定的转换Map表进行重写rewritemap
---- 转换http://www.domain.com/{countrycode}/anypath到Map表中规定的URL,前面是虚拟主机中的定义。
---- rewritelog /usr/local/apache/logs/rewrite.log
---- rewriteloglevel 9
---- rewriteengine on
---- proxyrequest on
---- rewritemap sitemap txt:/usr/local/apache/conf/rewrite.map
---- rewriterule ^/([^/]+)+/(.*)$ http://%{REMOTE_HOST}::$1 [C]
---- rewriterule (.*)::([a-z]+)$ ${sitemap:$2|http://h.i.j.k/} [R=301,L]
---- 文件/usr/local/apache/conf/rewrite.map的内容如下:
---- sg http://a.b.c.d/
---- sh http://e.f.g.h/

---- 注: 当用户请求http://www.domain.com/sg/anypath时被重写为http://a.b.c.d/anypath。当需要调试时请用rewritelog和 rewriteloglevel 9联合,9为最大,即得到最多的调试信息;最小为1,表示得到最少的调试信息;默认为0,表示没有调试信息。

---- sitemap的语法是${sitemap: LookupKey | Defaultvalue},有些书上把$写成了%是错误的。
(作者:吴阿亭)

相关链接:
制作Linux的优盘启动盘 http://club.sob8.com/read-htm-tid-40188.html



本文地址http://777yjt.sob8.com/blog-htm-do-showone-itemid-5345.html



文章评论10条回复
  guest
2008-10-29


cheap wow power leveling I'm moving this weekend and packing and. gold für wow kaufen cleaning all week so this week's episode is. gold kaufen wow a short one When I first heard that. HDRO gold Blizzard announced the Recruit-a-Friend. level wow program was going to be giving zhevra. lord of rings online gold mounts as incentive I must say that. lotro gold I heaved a very audible groan You see we've. lotro gold already referred all the friends we can. po wow talk into playing the last of which we drug into. power level our mad little World of Warcraft not even. power level a month ago So after reading through all the. wow geld kaufen things being offered as referral. wow gold incentive my significant other decided to. wow gold guide make the suggestion that I start a new. wow level account so that he can have a zhevra mount. wow leveling My response was something very similar. wow lvl to what you see when you click the banner. wow lvl That and I had to torture the target of what. wow lvl 60 I consider to be one of the most annoying. wow lvl 70 quests ever Two hours for four hooves. wow power leveling is crazy, and I am apparently that. wow powerlevel unlucky Philo you've commented before. wow powerlevel on your dislike of this comic Why. wow powerleveling the hell do you keep reading it and posting. wow powerleveling guide People have seen your negative criticism. .

  guest
2008-10-29



  buy cheap wow gold Despite the extensive problems and human. des po wow violations rights perpetuated by the. free online games Chinese government some in service of the. free online war games Olympic games themselves most of the world. gold wow seems to content to settle in and watch. gold wow the Beijing Olympics one way or another. mp3 player Apparently that attitude has spread to. online games Blizzard itself Currently on the European. play war games and Chinese servers there are NPCs at each. po wow major Battlemaster area in the capital. world of warcraft cities who proclaim that Battlegrounds are. world of warcraft hosting some type of "Spirit of Competition.wow For simply participating in a battleground. wow you are sent a Competitor's Tabard. wow europe which features 4 multi-colored rings on. wow geld a white background a clear reference to. wow gold the Olympics itself If you win. wow gold guide a battleground during this time period you. wow gold guide may also have a chance at receiving a gold. wow gold guide medal which summons a spirit of. wow gold verkaufen competition but it's not an exact. wow level service replica While I normally hate on. wow leveling service excessive varying transitions her. wow powerleveling guide use of them only enhances the video I'm. wow powerleveling guide eager to see. .




  guest
2008-10-29


8GB MP3 PLAYER which looks like a small Chinese dragon. apple ipod according to tipster Ichthallus This. canon digital camera competition does not appear to be live on. cheap world of warcraft gold the US Servers nor has anyone from. digital camera Blizzard. digital cameras spoken up to reveal if it ever . dvd player will be as of this writing We'll have to. eve isk watch and see what happens As Blizzard does. ipod not appear to be an official Olympic partner there. ipod nano is some concern from some quarters that. ipod shuffle this could simply be a copyright issue It's. ipod touch also possible that this was meant to be. ipods a Chinese servers only event and it.mp3 only accidentally got onto the EU servers. mp3 player Thanks to everyone who sent us tips on this. mp3 players The olyimpcs have a "global" start time. mp4 - if this is being released in such. portable dvd players a manner as you suggest they would be. world of warcraft buy gold starting 8/8/8 and I'm guessing 8:08pm china. wow time for each version At a off hand. wow gold guess that'd be around 3am on th. wow gold e 7th for us players I think. wow leveling Don't let the machinima snobs ruin your fun. wow powerleveling Demachic is a 13 year old girl from Ireland. zubehoer mp3 player



  guest
2008-10-29


2GB MP3 PLAYER Brian Kopp's World of Warcraft Alliance. 4GB MP3 PLAYER Leveling Guide also includes numerous. buy wow gold tips for improving leveling speed I found. buying gold world of warcraft this tips alone to be very helpful They. cell phones improved my Alliance leveling speed. cheap cell phones tremendously Brian Kopp was also a beta. cheap wow gold tester for the Burning Crusade expansion. cheap wow gold and released the update 60-70 portion of. cheap wow gold his guide within a week of when Burning. cheapest wow gold Crusade became available Brian Kopp's WoW. eve isk Alliance Leveling Guide is easily the best. mp3 players resource available for any Alliance player. phones cell looking to improve their leveling in World. portable mp3 player of Warcraft All of the quest information. portable mp3 players for each Alliance race in condensed into. sell wow gold an easy to follow step-by-step guide I. world of warcraft gold found it a struggle sometimes to keep track. wow of where I should go next with James WoW Alliance. wow gold Leveling Guide That wasn't the case with. wow gold Brian Kopp's guide His guide has helped. wow gold my new Night Elf Hunter get to level. wow gold 20 in record time I'm leveling faster than. wow gold ever now I wish I had picked up Brian. wow gold Kopp's World of Warcraft Alliance Leveling. wow gold kaufen Guide sooner. wow gold kaufen