“Удалить index.php из url htaccess” Ответ

Как удалить 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 из url htaccess

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

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

Ответы похожие на “Удалить index.php из url htaccess”

Вопросы похожие на “Удалить index.php из url htaccess”

Больше похожих ответов на “Удалить index.php из url htaccess” по PHP

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

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