APACHE下如何开启REWRITE模块
apache配置文件httpd.conf里面找到#LoadModule rewrite_module modules/mod_rewrite.so去除前面的"#"
如果没有找到此行,就单独添加一行LoadModule rewrite_module modules/mod_rewrite.so
在网站根目录下放一个.htaccess文件。文件的内容大致如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule . /index.php
</IfModule>
页:
[1]