Answers for "php codeigniter remove index.php"

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

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

Code answers related to "php codeigniter remove index.php"

Browse Popular Code Answers by Language