Reputation: 201
I want to redirect
/latoya to /global-css
however i want to prevent /latoya/signup/ajax/* OR */ajax from being redirected.
I'ave tried a few ways.. but none of them are successful
Please help
Thanks
Upvotes: 1
Views: 40
Reputation: 785128
You can use this RedirectMatch
rule in your DOCUMENT_ROOT/.htaccess
file:
RedirectMatch 301 ^/latoya/?$ /global-css
Upvotes: 1