Answers for "codeigniter 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

codeigniter dbforge add index

$sql = "CREATE INDEX your_index_name ON table_name(field_name)";
$this->db->query($sql);
Posted by: Guest on October-12-2020

Code answers related to "codeigniter index.php"

Browse Popular Code Answers by Language