how to remove index.php from url in codeigniter ?
- by Mehdy
how to remove index.php from my url in codeigniter . i remove index.php from my config file and i have run my rewrite_module in apache(2.2.11) and my .htaccess file is
RewriteEngine on
RewriteCond $1 !^(index\.php|images|captcha|css|js|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
now whenever i click any link it show that request url don't found . so please tell me what is the problem ?