|
<IfModule mod_rewrite.c>
下面是我的规则
RewriteEngine on
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|images|uploads|js|skins|theme|css|robots\.txt)
RewriteRule ^(.*)$ index\.php/group/index/$1
访问www.xx.com/beijing 出错总是找不到页面
404 Page Not Found
The page you requested was not found.
|
|