Reputation: 103
I want that all the URL like www.mydomain.com/page/x redirects to www.mydomain.com, when in the place of the x there might be any single number and any combination, how can I do?
Thanks
Upvotes: 0
Views: 662
Reputation: 15550
You can do that with following;
RewriteEngine On
RewriteRule ^/page/([0-9]+)$ / [R=301,L]
Upvotes: 1