“index.php в codeigniter” Ответ

index.php в 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

удалить index.php в 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

Ответы похожие на “index.php в codeigniter”

Вопросы похожие на “index.php в codeigniter”

Больше похожих ответов на “index.php в codeigniter” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования