Horje
index.php in codeigniter Code Example
index.php in codeigniter
<?php 
#By default, the index.php file will be included in your URLs:
  
# Create a .htaccess file in your root folder and paste the below code 
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
?>
remove index.php in codeigniter
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA] 




Php

Related
convert am pm time to 24 hour in php Code Example convert am pm time to 24 hour in php Code Example
php code for getting the next day Code Example php code for getting the next day Code Example
print session in laravel Code Example print session in laravel Code Example
wordpress plugin deactivate from database Code Example wordpress plugin deactivate from database Code Example
remove space from string php Code Example remove space from string php Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7