“Hapus index.php dari url htaccess” 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 dari url htaccess

RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]

RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
Fierce Falcon

Jawaban yang mirip dengan “Hapus index.php dari url htaccess”

Pertanyaan yang mirip dengan “Hapus index.php dari url htaccess”

Lebih banyak jawaban terkait untuk “Hapus index.php dari url htaccess” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya