I am working in codeigniter project and I want to rewrite my URL using htaccess. I have a URL like abc.com/main/demo
and I want to change it to abc.com/demo
I just remove the " main " .
This should do it:
RewriteEngine On
RewriteBase /
RewriteRule ^main/(.*)$ /$1 [R]