“nginx codeigniter hapus index.php” Kode Jawaban

cara menghapus index.php di 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]
?>
Mr. Samy

Hapus index.php di Codeigniter

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA] 
Dull Dolphin

Menghapus index.php di Codeigniter

//find the below code   
$config['index_page'] = "index.php" 
//replace with the below code
$config['index_page'] = ""
yusuf_fazeri

nginx codeigniter hapus index.php

# Only for Nginx server
location / {
    try_files $uri $uri/ /index.php$is_args$args;
}
yash dharia

Jawaban yang mirip dengan “nginx codeigniter hapus index.php”

Pertanyaan yang mirip dengan “nginx codeigniter hapus index.php”

Lebih banyak jawaban terkait untuk “nginx codeigniter hapus index.php” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya