apache伪静态配置(URL重写)

1.打开apache配置文件 httpd.conf 。
2.开启rewrite模块,去掉注释#

#LoadModule rewrite_module modules/mod_rewrite

3.让apache服务器支持.htaccess,打开httpd.conf,设置AllowOverride为All

Options FollowSymLinks

AllowOverride All

4.创建.htaccess文件,写入rewirte规则,如把(cqh-123.html定向到index.php?action=cqh&id=123)规则为:

RewriteEngine on

RewriteRule ([a-zA-Z]{1,})-([0-9]{1,}).html$ index.php?action=$1&id=$2

你可能感兴趣的:(apache)