301重定向URL以数字开头

时间:2010-03-30 00:24:51

标签: regex apache .htaccess

如何301重定向任何以1 - 9999之间的数字开头的网址,例如

domain.com/12/something/anotherthing

domain.com/378/product/widgets

domain.com/2560

1 个答案:

答案 0 :(得分:2)

RewriteCond %{REQUEST_URI} ^/([0-9]+)/?(.*)
RewriteRule (.*) http://domain.com

应该工作但没有经过测试,我可以在这里制定一些.htaccess规则。