I had old html website which had .html pages and i want to redirect to non .html pages which wordpress has.
for eg.
Old site http://myweb212.com/About-Us/jony-test.html
wordpress site.
http://myweb212.com/About-Us/jony-test
There are many pages in website so is this possible do this with one rule?
I tried using a rule but it breaks some of the images of upload folder and shows 404.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ /$1 [L,R=301]
RewriteRule . /index.php [L]
</IfModule>