“Entfernen von Index.php in Codesigniter” Code-Antworten

So entfernen Sie Index.php in Codesigniter

<?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

So entfernen Sie Index.php in Codesigniter

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]  
Harendra

entfernen Sie index.php in Codesigniter

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

Entfernen von Index.php in Codesigniter

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

Nginx Codesigniter entfernen index.php

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

Ähnliche Antworten wie “Entfernen von Index.php in Codesigniter”

Fragen ähnlich wie “Entfernen von Index.php in Codesigniter”

Weitere verwandte Antworten zu “Entfernen von Index.php in Codesigniter” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen