codeigniter中的URL问题

时间:2018-06-11 14:12:00

标签: php codeigniter

我正在尝试访问我的应用程序,但这是错误:

  

在此服务器上找不到请求的URL / app / auth / login。

这是.htaccess文件

Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.html index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /app/index.php/$1 [L,QSA]

文件夹app包含codeigniter中的php应用程序。

config.php

$config['base_url'] = 'http://192.168.0.150/app/';

$config['index_page'] = '';

routes.php文件:

$route['default_controller'] = 'auth';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;

2 个答案:

答案 0 :(得分:0)

将RewriteBase / app /添加到.htaccess文件中。

以下是一个例子:

<IfModule mod_rewrite.c>
    RewriteEngine On    
    RewriteBase /app

    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

答案 1 :(得分:0)

工作示例

示例:.htaccess

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

如果仍然无法正常工作

请在000-default.conf中添加以下行

  <Directory /var/www/html>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Require all granted
   </Directory>

(Ubuntu的文件路径:/ etc / apache2 / sites-available)并重启apache