Forum Moderators: phranque
http://blog.example.com/page.html http://www.example.com/blog/page Redirect 301 /page.html http://www.example.com/blog/page http://www.example.com/blog/page.html http://www.example.com/blog/page)
RewriteRule ^([^/.]+)\.html$ http://www.example.com/blog/$1 [R=301,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress RewriteRule, does that that preclude the use of Redirect anywhere else in the .htaccess file?