Hi, I need to redirect old URL-s from my old site to new wordpress url-s.
This is how look 1 of old urls, they are all same only last number changes:
http://www.mysite.com/like.php?id=12154
and this is how need to look now:
http://www.mysite.com/like/12154
Thank you
Neso
Hi Neso, I think the Redirection plugin will help you to do so...
http://wordpress.org/extend/plugins/redirection/
However, in terms of SEO I would recommend you to change your URL to a custom structure, such as /date/month/titel or just /category/title, and not just a number /12556.
http://www.wordpressmax.com/customize-wordpress/custom-permalinks
I have resolved problem, no need for Redirect plugin, just add this to htaccess file.
RewriteCond %{QUERY_STRING} ^id=(.*)$
RewriteRule ^like\.php$ http://mysite.com/like/%1? [R=301,L]
I hope this will help sombody ... ;)
Thanks for pointing that out esmi... wasn't aware of that.