php.htaccesscodeigniter

How can I rewrite my url (like abc.com/main/demo) using htaccess?


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 " .


Solution

  • This should do it:

    RewriteEngine On 
    RewriteBase / 
    RewriteRule ^main/(.*)$ /$1 [R]