I want to remove the seo/ folder name and the file extension(.html) from the below url. I am working on a static html website.
www.example.com/seo/advanced-system.html to www.example.com/advanced-system/
In .htaccess of my root folder I have written this,
RewriteCond %{HTTP_HOST} ^www.example.com
RewriteRule ^seo/(.*)$ www.example.com/$1 [L,R=301]
In .htaccess of my subfolder I have written this,
RewriteRule ^(.*)$ /$1 [R=301,L]
I googled and tried all possible ways, but not able to find the solution. Please help me.
2
Answers
In .htaccess of my root folder, use this
In .htaccess of
/seo/
, use this:Try this