简体   繁体   中英

Redirect www.domain.com/112 to www.domain.com/ using htaccess 301 redirect

I have thousands of URLs on my website like:

www.domain.com/112 and www.domain.com/113

I'd like to redirect these straight to www.domain.com .

Can someone explain how I do this using the 301 Redirect with htaccess?

Thank you

RewriteEngine on
RewriteRule ^(\d+)/?$ / [R=301,L]

This will redirect any digit-based request in document root to index page

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM