I want to redirect all my old pages (mywebsite.com/help.html) to (mywebsite.com/help).
So I just added this code in my .htaccess
file:
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{4,}\s([^.]+)\.html [NC]
RewriteRule ^ %1 [R,L,NC]
it's working but I get a strange issue when I try this URL:
mywebsite.com/page.html
I get this result
www.http//mywebsite.com/page/
You can see URL rewrite adding this invalid code in the start of the page url (((www.http//))