how to remove index.php from url in codeigniter ?
Posted
by Mehdy
on Stack Overflow
See other posts from Stack Overflow
or by Mehdy
Published on 2010-02-03T13:25:11Z
Indexed on
2010/03/13
1:17 UTC
Read the original article
Hit count: 276
codeigniter
|php
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 ?
© Stack Overflow or respective owner