centOS使用.htaccess

首先,你要保证你的Aapche已经开启了.htaccess

可以参考:http://www.veryhuo.com/a/view/21259.html

    以下是.htaccess文件中的内容:

      RewriteEngine On

      RewriteRule ^hardware-id$ /hardware-db/index.php [PT] #匹配hardware然后跳转到/hardware-db/目录下的index.php
      RewriteRule ^hardware-id/(.*)$ /hardware-db/index.php?hardware=$1 [PT]

1.如果是直接在vhost.cnf中配置的话,多一点点小变化

      RewriteEngine On

      RewriteRule ^/hardware-id$ /hardware-db/index.php [PT] 
      RewriteRule ^/hardware-id/(.*)$ /hardware-db/index.php?hardware=$1 [PT]

     如: ABC.com/hardware-id, 在使用vhost文件时,会匹配/hardware-id,

                                           而使用.htaccess则只会匹配到hardware-id(不包括斜杠

    注意: 同时使用.htaccess文件时,如 hardware-id不能存在真实的目录与之同名,否则会无限匹配

 

你可能感兴趣的:(centos)