Здравствуйте. Помогите пожалуйста преобразовать url Сейчас работает mod rewrite и ссылки выглядят так /forum/pmxblog/?sa=view;uid=4 Так выглядят с выключеным /forum/index.php?action=pmxblog;sa=view;uid=4 Как можно его сделать более привлекательным? Можно ли это сделать использовав только .htaccess? Код (Text): RewriteEngine on RewriteBase /forum # Rules for: profiles RewriteRule ^profile/([^/]+)/?$ ./index.php?pretty;action=profile;user=$1 [L,QSA] RewriteRule ^pmxblog/([^/]+)/?$ /index.php?action=pmxblog;sa=view;uid=$1 [L,QSA] # Rules for: actions RewriteRule ^(activate|admin|announce|attachapprove|buddy|calendar|clock|collapse)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(coppa|credits|deletemsg|display|dlattach|editpoll|editpoll2|emailuser)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(findmember|groups|help|helpadmin|im|jseditor|jsmodify|jsoption)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(lock|lockvoting|login|login2|logout|markasread|mergetopics|mlist)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(moderate|modifycat|modifykarma|movetopic|movetopic2|notify|notifyboard|openidreturn)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(pm|post|post2|pmxblog|printpage|profile|quotefast|quickmod)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(quickmod2|recent|register|register2|reminder|removepoll|removetopic2|reporttm)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(requestmembers|restoretopic|search|search2|sendtopic|smstats|suggest|spellcheck)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(splittopics|stats|sticky|theme|trackip|about:mozilla|about:unknown|unread)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(unreadreplies|verificationcode|viewprofile|vote|viewquery|viewsmfile|who|\.xml)/?$ ./index.php?pretty;action=$1 [L,QSA] RewriteRule ^(xmlhttp)/?$ ./index.php?pretty;action=$1 [L,QSA] # Rules for: boards RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1.0 [L,QSA] RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([0-9]*)/?$ ./index.php?pretty;board=$1.$2 [L,QSA] # Rules for: topics RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1;topic=$2.0 [L,QSA] RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/([0-9]*|msg[0-9]*|new)/?$ ./index.php?pretty;board=$1;topic=$2.$3 [L,QSA]