php - 我在 Ubuntu 14.04 中使用 codeigniter 得到 URL not found 问题错误

标签 php .htaccess codeigniter mod-rewrite

我已将我的 codeigniter 项目与 Ubuntu 14.04 集成。在默认 Controller (即登录 Controller )之后,它给我 url not found 错误。

请找到以下 .htaccess 文件

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

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

最佳答案

好的,你首先需要启用mod_rewrite

sudo a2enmod rewrite

sudo service apache2 restart

然后打开apache的conf文件

sudo gedit /etc/apache2/apache2.conf

如果有注释就取消注释

AccessFileName .htaccess

您需要将 AllowOverride 更改为 All - 注意我的根是 var/www/html 你的可能只是 var/www

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

重新启动 apache 就可以了

sudo service apache2 restart

关于php - 我在 Ubuntu 14.04 中使用 codeigniter 得到 URL not found 问题错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25501645/

相关文章:

php - 当为可空函数参数指定 `null` 时如何使用默认值?

php - 带有数组的 MySQL WHERE 子句包含键

javascript - 如何获取元素:hover background with javascript and CORS

php - .htaccess 子目录中语言检测规则

PHP CodeIgniter 多个 LEFT OUTER 加入查询

php - 如何防止向MySQL数据库中插入重复数据

python - 在 PHP 中使用 shell_exec 长时间运行的 Python 脚本没有返回结果

php - .htaccess url重写

php - 迭代菜单的多维数组

php - 外键记录多条时如何显示一次用户信息?