您可以在
mynews/.htaccess
以下内容:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /mynews/
# external redirect from actual URL to pretty one
RewriteCond %{THE_REQUEST} /category\.php\?cat=([\w-]+)&subcat=([\w-]+)\s [NC]
RewriteRule ^ %1/%2? [R=301,L]
RewriteCond %{THE_REQUEST} /category\.php\?cat=([\w-]+)\s [NC]
RewriteRule ^ %1? [R=301,L]
# internal forward from pretty URL to actual one
RewriteRule ^([\w-]+)/([\w-]+)/?$ category.php?cat=$1&subcat=$2 [L,QSA,NC]
RewriteRule ^([\w-]+)/?$ category.php?cat=$1 [L,QSA,NC]