Reputation: 380
I have lot of URL that are having www.example.com/info/range/-string or www.example.com/info/range/ string, I want to remove white space of - in start of the string, how I can do this with .htaccess, I have tried this method but not working for me. How to redirect %20 or White space automatically to + or - with htaccess?
Upvotes: 1
Views: 92
Reputation: 785128
If you want to remove hyphen or space before string
and after info/range/
then you can use this redirect rule:
RewriteEngine On
RewriteRule ^(info/range)/[-\s]+(.+)$ /$1/$2 [L,NC,R=302]
I would also advice you to update the question with clear examples and your current .htaccess.
Upvotes: 1