I want to redirect links with .html extention to just file name. Something like example.com/dir/dir/abc.html to example.com/dir/dir/abc Could someone give me quick solution please. Thanks
Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^([^.]+)\.html$ http://www.domain.com/$1 [R=301,L]