I am moving a photography blog from [http://examplesite.net/wordpress] to [http://examplesite.net].
I need to redirect the existing links for pages and posts to the the new pages.
[http://examplesite.net/wordpress/category/page-or-post/]
to
[http://examplesite.net/category/page-or-post/]
I will be using the following rewrite:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) [examplesite.net...] [R=301,L]
Will this accomplish what I need?
Thanks in Advance
Paul