I am trying to remove index.php from url(sub-folder) in codeigniter. I am trying with htaccess file but I didn't get the result.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php) [NC]
RewriteRule ^(.*)$ /beta/index.php/$1 [L]
</IfModule>
When I remove index.php from url it will work fine but when i was trying to jump using url then it will not working and index.php not remove automatically from the URL.
Thanks in advance.