首先,我尝试了此处指定的建议:
> CodeIgniter removing index.php not working
> codeignitor: Remove index.php not working
> CodeIgniter .htaccess index.php rewrite not working on user directory
> How to remove “index.php” in codeigniter’s path
> https://ellislab.com/expressionengine/user-guide/urls/remove_index.php.html
> Rewriterule for CodeIgniter not working
我正在尝试删除地址栏中臭名昭著的index.php.
这是我当前的配置:
In my /etc/apache2/sites-available/my.website.com.conf file i put this:
<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>
In my codeigniter root directory (same dir with index.php), i have a .htaccess like this:
<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>
And finally, my 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/<<显示默认的Codeigniter欢迎页面
> http://my.website.com/controller_name/<<显示:
未找到
在此服务器上找不到请求的URL /登录.
my.website.com端口80上的Apache / 2.4.7(Ubuntu)服务器
> 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.
我在这里想念什么吗?有人可以指出我正确的方向吗?
谢谢.
编辑#1
下面是我的文件夹结构
编辑#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>
Note: Some time in localhost
index.php
will not removed.
并包含您的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'] = '';