How to remove /home from url in .htaccess

You can try this code in root .htaccess:

<IfModule mod_rewrite.c>
RewriteEngine on

//# Redirect from http://domain.com/home/... to http://domain.com/...
RewriteRule ^home\/(.*)$ /$1 [L,R=301]
RewriteRule ^home\/?$ / [L,R=301]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
</IfModule>

Aly Chiman

Aly Chiman is a Blogger & Reporter at AlyChiTech.com which covers a wide variety of topics from local news from digital world fashion and beauty . AlyChiTech covers the top notch content from the around the world covering a wide variety of topics. Aly is currently studying BS Mass Communication at University.