5
You could try creating an .htaccess file in your web root containing a command that uses the Apache web server's 'mod-rewrite' feature. Re-write gets the urlencoded variables and uses regex to declare a condition (when...) and a rule (do this...) They are commonly used to turn dynamic URLs into static ones, e.g.:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.yourdomain.com
RewriteRule ^index.php$ /index.htm [r=301,L]
They are good fun... meaning, I haven't a clue how to write one from scratch.
Lots of info online if you search for mod rewrite.
A thread is for life. Not just for Christmas.