Codeigniter URL重写以删除index.php

时间:2015-08-06 10:20:17

标签: php apache .htaccess codeigniter mod-rewrite

首先,我尝试了这里指定的建议:

我正在尝试删除地址栏上臭名昭着的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>
  

最后,我的application / config / config.php:

$config['base_url'] = 'http://my.website.com';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';

当我在我的本地PC(运行Ubuntu 14.04)上测试上述配置时,它运行正常。但是,当我尝试在我的服务器上复制配置(运行Ubuntu 14.04)时,不知何故它不起作用。

执行此操作:

  • http://my.website.com/&lt;&lt;显示默认的Codeigniter欢迎页面
  • http://my.website.com/controller_name/&lt;&lt;显示:

    未找到 在此服务器上找不到请求的URL /登录名。 my.website.com端口80上的Apache / 2.4.7(Ubuntu)服务器

  • http://my.website.com/index.php/controller_name&lt;&lt;显示页面,但是正确地获取了静态文件的URL(即JS / CSS /图像),因为打印了这个:

      <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

我在这里遗漏了什么吗?有人能指出我正确的方向吗?

感谢。

编辑#1 下面是我的文件夹结构

Dir Structure

编辑#2。编辑#2 我可以确认mod_rewrite已启用

PHP Info

1 个答案:

答案 0 :(得分:1)

好的,您提到了许多与您的问题相关的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)

编辑01

config/routes.php

$route['default_controller'] = "";//give default controller name
$route['404_override'] = '';