Monday, 23 January 2017

codeigniter.htaccess used for remove the index.php file

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /tasteapp/index.php/$1 [L]
</IfModule>

Friday, 6 January 2017