I don't know if this is possible to do via htaccess or if it has something to do with server settings.
But basically i would like something like this:
RewriteRule ^RenderMe\.asp$ http://www.example.com
our website is php based (joomla), where our old website was done using .asp and it has been added on many other sites as a link. So i'm wanting to redirect/rewrite this asp file to go to our main page.
Now- I have this higher up in my code, which works:
RewriteCond %{QUERY_STRING} ^linkid=001(.*)$
RewriteRule ^RenderMe\.asp$ http://www.example.com/example/?
This rewrites fine.
If anyone has any suggestions i would appreciate it.