Forum Moderators: phranque
I have this already in the htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /sites/mysite/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /sites/mysite/index.php [L]
</IfModule>
But I also have these urls
/sites/mysite/?version=1
/sites/mysite/?version=2
which I'd like to change to
/sites/mysite/1
/sites/mysite/2
Is there any way to do this? Any ideas or help would be very much appreciated.