Удалить index.php в codeigniter 2.1.0

Я пробовал все в google, связанном с удалением index.php из URL-адреса в codeigniter, но ни одно решение не работало для меня. Я использую codeigniter version 2.1.0. Как я могу удалить индексную форму моего URL-адреса?

благодаря

Solutions Collecting From Web of "Удалить index.php в codeigniter 2.1.0"

В application/config.php убедитесь, что

 $config['index_page'] = ""; 

Затем установите это как ваш файл .htaccess :

 <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / #Removes access to the system folder by users. #Additionally this will allow you to create a System.php controller, #previously this would not have been possible. #'system' can be replaced if you have renamed your system folder. RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php?/$1 [L] #When your application folder isn't in the system folder #This snippet prevents user access to the application folder #Submitted by: Fabdrol #Rename 'application' to your applications folder name. RewriteCond %{REQUEST_URI} ^application.* RewriteRule ^(.*)$ /index.php?/$1 [L] #Checks to see if the user is attempting to access a valid file, #such as an image or css document, if this isn't true it sends the #request to index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L] </IfModule> <IfModule !mod_rewrite.c> # If we don't have mod_rewrite installed, all 404's # can be sent to index.php, and everything works as normal. # Submitted by: ElliotHaughin ErrorDocument 404 /index.php </IfModule> 

Вы все настроены!

Для меня решение Рафаэля Caixetas не работало, но это делало:

 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L] 

Пробовали ли вы использовать пример, приведенный в руководстве пользователя CodeIgniter?

По умолчанию файл index.php будет включен в ваши URL-адреса:

 example.com/index.php/news/article/my_article 

Вы можете легко удалить этот файл, используя файл .htaccess с некоторыми простыми правилами. Вот пример такого файла, используя «отрицательный» метод, в котором все перенаправляется, за исключением указанных элементов:

 RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] 

В приведенном выше примере любой HTTP-запрос, отличный от тех, что для index.php, images и robots.txt, рассматривается как запрос для вашего файла index.php.

http://codeigniter.com/user_guide/general/urls.html

Я тестировал это на apache2 на многих разных хостингах, и он отлично работает.

использовать этот htaccess

 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] 

убедитесь, что вы enabled mod_rewirte с phpinfo();

затем сделайте это в config / config.php:

 $config['index_page'] = ''; | | 'AUTO' Default - auto detects | 'PATH_INFO' Uses the PATH_INFO | 'QUERY_STRING' Uses the QUERY_STRING | 'REQUEST_URI' Uses the REQUEST_URI | 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO | */ $config['uri_protocol'] = 'AUTO'; 

если он еще не работает, попробуйте изменить $config['uri_protocol']='AUTO' в один из перечисленных внутри файла application/config/config.php в строке 40/54:

иногда я использовал: REQUEST_URI вместо AUTO или "QUERY_STRING" для ходов goDaddy

проверьте свой файл httpd.conf

изменение

 AllowOverride None 

в

 AllowOverride All 

Это то, что я использую и работаю. Используйте этот код в своем .htaccess

 RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* website/index.php/$0 [PT,L] 

Просто убедитесь, что .htaccess находится в вашей корневой папке. (то есть: xampp / htdocs)

Затем в config.php (application \ config) замените config['index_page']='index.php' на config['index_page']='' .

В дополнение к файлу .htaccess, предоставленному Робертом Стэнли (см. Его ответ), перейдите в application/config/config.php , найдите $config['index_page'] = "index.php"; и замените его на $config['index_page'] = "" ;

Не забудьте изменить конфигурационный файл!

Приложение / config.php

 $config['index_page'] = ''; 

.htaccess

 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L] 

Вам просто нужно создать файл .htaccess в папке проекта и написать: RewriteEngine On

 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Rewrite all other URLs to index.php/URL RewriteRule ^(.*)$ index.php?url=$1 [PT,L] </IfModule> <IfModule !mod_rewrite.c> ErrorDocument 404 index.php </IfModule> And You don't need to define in base_url in config file: $config['base_url'] = '';// blank it. I hope it will work perfectly ...