I'm working on a website that has been switched from asp to php.
I need to redirect some .aspx requests to .php files.
This rewrite rule works fine:
rewriterule ^contact.test$ http://www.example.com/contact.php [R=301,L]
And this rule fails with the error described below:
rewriterule ^contact.asp$ http://www.example.com/contact.php [R=301,L]
The .asp rule results in this error : "This domain is not configured for this service. Please contact the webmaster to have it enabled."
It seems that the error is happening, before the .htaccess rule is executed. (since the .test example seems to work)
Any thoughts / solutions on how to solve this dilemma, or what is causing it, would be greatly appreciated
[edited by: jdMorgan at 12:33 am (utc) on May 13, 2010]
[edit reason] Please use example.com only [/edit]