One strange thing though.
I used this code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^page/1/(.*)$ http://www.mydomain.com/posts/$1 [R=301,L]
RewriteRule ^page/(.*)$ http://www.mydomain.com/posts/page/$1 [R=301,L]
So the /page/1/ goes to /posts/
and the rest like this:
/page/2/ to /posts/page/2/
/page/3/ to /posts/page/3/
Works in IE, but in firefox /page/1/ goes to /posts/1/
Weird. How come?
|