最新消息: 新版网站上线了!!!

htaccess的配置方法

在apache下配rewrite的方法
首页找到httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so
把#号去掉
.htaccess的配置方法
把AllowOverride None改成AllowOverride All
<Directory />
    Options FollowSymLinks ExecCGI Indexes
    AllowOverride All
    Order deny,allow
    Deny from all
    Satisfy all
</Directory>

.htaccess文件如下
RewriteEngine On
RewriteBase /yiiapp
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php/$1 [L,QSA]

转载请注明:谷谷点程序 » htaccess的配置方法