fas
fas

Reputation: 103

Wordpress redirect of all page/number to home page with .htaccess

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

Answers (2)

Hüseyin BABAL
Hüseyin BABAL

Reputation: 15550

You can do that with following;

RewriteEngine On
RewriteRule ^/page/([0-9]+)$ / [R=301,L]

Upvotes: 1

prady00
prady00

Reputation: 741

RewriteEngine On
RewriteRule ^/page/$1?$ / [R=301,L]

Upvotes: 1

Related Questions