mod_rewrite是Apache的一个非常强大的功能,它可以实现伪静态页面
下面我详细说说它的使用方法
A.检测Apache是否支持mod_rewrite
通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。
如果没有开启“mod_rewrite”,则打开目录 您的apache安装目录“/apache/conf/” 下的 httpd.conf 文件,通过Ctrl+F查找到“LoadModule rewrite_module”,将前面的”#”号删除即可。
如果没有查找到,则到“LoadModule” 区域,在最后一行加入“LoadModule rewrite_module ,modules/mod_rewrite.so”(必选独占一行),然后重启apache服务器即可。
B.让apache服务器支持.htaccess
如何让自己的本地APACHE服务器支持”.htaccess”呢?其实只要简单修改一下apache的httpd.conf设置就可以让 APACHE支 持.htaccess了。打开httpd.conf文件(在那里? APACHE目录的CONF目录里面),
用文本编辑器打开后,查找
Options FollowSymLinks
AllowOverride None
改为
Options FollowSymLinks
AllowOverride All
就可以了。
C.建立.htaccess 文件
有1种最简单的方法建立.htaccess文件:
用记事本 打开,点击文件–另存为,在文件名窗口输入”.htaccess”,注意是整个绿色部分,
也就是包含英文引号,然后点击保存就行了。
<VirtualHost *:80>
ServerName www.to.cn
DocumentRoot "D:\wamp\www\to"
<Directory "D:\wamp\www\to">
Options FollowSymLinks Includes
AllowOverride none
Order allow,deny
Allow from All
</Directory>
RewriteEngine On
RewriteRule ^/(\d+)/(bingo.html)?$ /html/bingo.php [L,NC,N]
RewriteRule ^/modelinfo_(\d+).html /html/modelinfo.php?mid=$1 [L,NC,N]
RewriteRule ^/modelinfo_s(\d+).html /html/modelinfo.php?series_id=$1 [L,NC,N]
RewriteRule ^/compare_([_\d]*)c?(\d+)?d?(\w+)?.html /html/compare.php?modelid=$1&change=$2&do=$3 [L,NC,N]
RewriteRule ^/param_(\d+).html /html/param.php?mid=$1 [L,NC,N]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !/admin
RewriteCond %{REQUEST_URI} !/[^/]+/
RewriteRule ^/(.*).php /html/$1.php [L,NC,N,QSA]
</VirtualHost>