tags:

views:

27

answers:

1

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]*...

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