Horje
how to remove index.php in codeigniter Code Example
how to remove 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]
?>
how to remove index.php in codeigniter
1. Change $config['index_page'] = "index.php" to $config['index_page'] = "" in config.php
2. Change $config['uri_protocol'] ="AUTO" to $config['uri_protocol'] = "REQUEST_URI" in config.php
3. Create .htaccess file in root dir of your application and paste the following code
  	RewriteEngine on
	RewriteCond $1 !^(index\.php|resources|robots\.txt)
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule ^(.*)$ index.php/$1 [L,QSA]  
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] 
how to remove index.php in codeigniter
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
nginx codeigniter remove index.php
# Only for Nginx server
location / {
    try_files $uri $uri/ /index.php$is_args$args;
}
removing index.php in codeigniter
//find the below code   
$config['index_page'] = "index.php" 
//replace with the below code
$config['index_page'] = ""




Php

Related
show php info Code Example show php info Code Example
formate date using carbon in laravel blade Code Example formate date using carbon in laravel blade Code Example
php check if string email Code Example php check if string email Code Example
index.php in codeigniter Code Example index.php in codeigniter Code Example
convert am pm time to 24 hour in php Code Example convert am pm time to 24 hour in php Code Example

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