Прежде всего, я пробовал предлагаемое здесь предложение:
Я пытаюсь удалить печально известный index.php
в адресной строке.
Это моя текущая конфигурация:
В моем файле /etc/apache2/sites-available/my.website.com.conf я ставлю это:
<Directory /path/to/root/directory/> AllowOverride All Order allow,deny Allow from all </Directory>
В моем файле /etc/apache2/apache2.conf я помещаю это:
<Directory /path/to/root> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory>
В моем корневом каталоге codeigniter (тот же каталог с index.php) у меня есть .htaccess:
<IfModule mod_rewrite> 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>
И, наконец, мое приложение / config / config.php:
$config['base_url'] = 'http://my.website.com'; $config['index_page'] = ''; $config['uri_protocol'] = 'REQUEST_URI';
Когда я протестировал приведенную выше конфигурацию на своем локальном ПК (работает Ubuntu 14.04), он работает отлично. Однако, когда я пытаюсь реплицировать конфигурацию на моем сервере (работает Ubuntu 14.04), как-то это не работает.
Делая это:
http://my.website.com/controller_name/ << Показывает:
Не найдено. Запрошенный URL / логин не найден на этом сервере. Apache / 2.4.7 (Ubuntu) Сервер на my.website.com Порт 80
http://my.website.com/index.php/controller_name << показывает страницу, однако URL-адрес статических файлов (например, JS / CSS / images) неправильно загружен, так как печать:
<link rel="stylesheet" href="assets/styles/material-design-icons.css" type="text/css" /> <link rel="stylesheet" href="assets/styles/font.css" type="text/css" /> <link rel="stylesheet" href="assets/styles/app.css" type="text/css" />
добавит index.php, если это будет видно из инспектора исходного кода.
Я что-то пропустил? Может ли кто-нибудь указать мне в правильном направлении?
Благодарю.
EDIT # 1 Ниже представлена моя структура папок
EDIT # 2 Я могу подтвердить, что mod_rewrite включен
Хорошо, вы упомянули много ссылок Stack, связанных с вашим вопросом.
Измените настройки
$config['base_url'] = ''; $config['index_page'] = ''; $config['uri_protocol'] = 'AUTO';
и добавьте это в .htaccess
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule>
Примечание. Некоторое время в localhost
index.php
не будет удалено.
и включить ваши css / js / images
CSS:
<link rel="stylesheet" href="<?php echo base_url()?>assets/styles/material-design-icons.css" type="text/css" />
JS:<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/in/easing.js"></script>
Img:<img src="<?php echo base_url()?>assets/image/logo.jpg" alt=""/>
Таким образом, структура файла будет
- application - assets - style - material-design-icons.css - font.css - app.css - js - easing.js - image - logo.jpg - index.php - .htaccess(Post in my code)
EDIT 01
В config/routes.php
$route['default_controller'] = "";//give default controller name $route['404_override'] = '';