Modify .htaccess for codeigniter URLS -
i trying remove index.php url in codeigniter. rewrite mod scripts on place can't find .htaccess file!! tried looking in root directory , everywhere else, no luck.
from read should in application folder , when go there find .htaccess file , has deny all. not same content every 1 else sharing online before modification.
please advise.
actually don't find it; create along side index.php file contents:
rewriteengine on rewritecond $1 !^(index\.php|images|robots\.txt) rewriterule ^(.*)$ /index.php/$1 [l]
in above example, http request other index.php, images, , robots.txt treated request index.php file.
Comments
Post a Comment