Answers for "removing index.php in codeigniter"

PHP
3

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]
?>
Posted by: Guest on June-15-2020
0

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]
Posted by: Guest on February-10-2021
-1

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]
Posted by: Guest on June-21-2020
1

codeigniter apache remove index.php

#in apache mod rewrite is disabled
a2enmod rewrite
Posted by: Guest on August-06-2021
0

nginx codeigniter remove index.php

# Only for Nginx server
location / {
    try_files $uri $uri/ /index.php$is_args$args;
}
Posted by: Guest on May-04-2021
1

removing index.php in codeigniter

//find the below code   
$config['index_page'] = "index.php" 
//replace with the below code
$config['index_page'] = ""
Posted by: Guest on October-14-2020

Code answers related to "removing index.php in codeigniter"

Browse Popular Code Answers by Language