<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
#RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]
#论坛
RewriteRule ^/1111.html$ /news [L,R=301]
#add by hjwen
redirect 301 /aaa /bbb
RewriteRule ^news/xxx$ index.php?a=shows&catid=11&id=22 [NC,L]
</IfModule>