Hi all,
I have a blog which its url is ***.com/link/
It's a WordPress.
then I changed the url to ***.com/blog/ so I need a RewriteRule to redirect links like that:
***.com/link/?p=21 to ***.com/blog/?p=21
I tried that RewriteRule
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(?p=[0-9]+)$ mysite.com/blog/?p=$1
but I get an error.
I hope you can help me.