2013-05-14 57 views

回答

0

这是我一直在使用上最笨我的项目是什么,和从未有过的问题。

你需要调整你的RewriteBase。它从Web服务器的根目录开始/ www/your_project将会更改为/ your_project /在htaccess文件中。

此外,请确保您已经启用了mod_rewrite。

How to enable mod_rewrite for Apache 2.2

CodeIgniter htaccess and URL rewrite issues

此外,你需要删除从$配置[ 'index_page']在index.php = '的index.php' 位于config.php文件在你的笨安装。

<IfModule mod_rewrite.c> 
    RewriteEngine On 
    RewriteBase /your_project/ 

    #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 $1 !^(index\.php|img|font|css|temp|js|robots\.txt|favicon\.ico) 
    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> 
1

在把下面的代码.htaccess文件。

RewriteEngine On 
RewriteBase /path/learn_ci 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond $1 !^(index\.php|css|asset|images|robots\.txt) 
RewriteRule ^(.*)$ index.php/$1 [L] 

在您的应用程序/配置/ config.php文件将下面的代码

$config['base_url'] = 'http://yourdomain.com/'; 
$config['index_page'] = ''; 

它会为你工作。

享受... !!! :)

0

这应该是您的项目

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/yourproject 


#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> 

的根文件夹htaccess文件,你可以从config.php文件为删除的index.php:$config['index_page'] = '';

相关问题