.htaccess query string with static page
        Posted  
        
            by Wes
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Wes
        
        
        
        Published on 2010-05-03T13:34:03Z
        Indexed on 
            2010/05/03
            13:38 UTC
        
        
        Read the original article
        Hit count: 455
        
.htaccess
So, unfortunately im using vBulletin with Kohana and my integration is getting a bit complicated locking vBulletin out. Doing some rewrites, this in particular
RewriteCond %{QUERY_STRING} ^do=(editprofile|editoptions)$
RewriteRule ^forum/profile.php$ /user_profile/edit/ [R=301,L]
Comes back with /user_profile/edit/?do=editprofile
where I need
/user_profile/edit/
Cheers, Wes
© Stack Overflow or respective owner