I have a .htaccess redirect setup like this
Redirect / http://www.example.com
I need to allow a request to index-new.html to show that file and not do the redirection to example.com
I have a .htaccess redirect setup like this
Redirect / http://www.example.com
I need to allow a request to index-new.html to show that file and not do the redirection to example.com
You cannot do this with
Redirect
, but you might be able to usemod_rewrite
and exclude that specific URL.