作者 王智

修改

1 -<IfModule mod_rewrite.c>  
2 - Options +FollowSymlinks -Multiviews  
3 - RewriteEngine On  
4 -  
5 - RewriteCond %{REQUEST_FILENAME} !-d  
6 - RewriteCond %{REQUEST_FILENAME} !-f  
7 - RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]  
8 -</IfModule>  
1 -if (!-e $request_filename) {  
2 - rewrite ^(.*)$ /index.php?s=/$1 last;  
3 - break;  
4 -}