hi
i want to redirect test.com/8/
to test.com/8
the number section is not fixed, so i need something includes [0-9]*...
views:
27answers:
1
A:
Try following:
RewriteEngine on
RewriteRule ^test.com/([0-9]+)/$ test.com/$1 [L,R=301]
Remember, flag R is important to force a external redirection
Michal Drozd
2010-07-25 11:17:09