I currently have an Expression Engine blog which I am going to move over to Wordpress, the current url structure is /blog/comments/page-title
I have imported the posts into Wordpress and I'm going to keep the same page title's for the pretty urls but just want the address to be /page-title
the Wordpress htaccess file is as follows
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
can anybody tell me how I do this additional redirect in this block? Also will this totally ensure that search engine indexing won't be affected as it has been running for 4 years and I have over 1700 blog posts currently indexed.