我有一个Ubuntu 14.04内核.我正在这个服务器上安装我的Laravel应用程序.

sudo nano /etc/apache2/sites-available/000-default.conf

I have only these options in the file

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port t$
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html/public/

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

I've changed the Document root to

DocumentRoot /var/www/html/public/

现在,当我try 访问我的Laravel应用程序时,从123.xxx.xxx.xxx/开始,它会显示主页,并且运行良好.它还获得所有的GET变量.例句:123.xxx.xxx.xxx?type=wefwef

但当我转到其他链接,例如123.xxx.xxx.xxx/login,它会给我一个错误

Not Found

The requested URL /login/ was not found on this server.

Apache/2.4.7 (Ubuntu) Server at 104.236.234.85 Port 80

我有路由.php在本地主机上运行良好.但不是在这个服务器上.请帮帮我.

推荐答案

看起来您必须通过将以下内容添加到您的vhost来启用.htaccess:

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

如果这不起作用,请确保您启用了mod_rewrite.

Don't forget to restart apache after making the changes! (service apache2 restart)

Laravel相关问答推荐

在 React 中将属性从一个组件传递到另一个组件

LARVAL SAVE 中的关系有

mysql 加入 ON 和 AND 到 laravel eloquent

从 Laravel Session 数组中删除项目

Laravel 4:处理种子中的关系

使用 Eloquent (Laravel) 在 Group By 之前排序

Laravel 5.1 是否与 PHP 7 兼容

如何在 Laravel 5.5 中扩展 vendor 包服务提供者

如何修复无效请求(不支持的 SSL 请求)

Laravel Request::input 调用未定义的方法

升级到 laravel 5.4 后调用未定义的方法

Laravel 初学者的良好开端

Laravel 4 - 如何将所有字段的所有验证错误消息作为 JSON struct 返回?

我在哪里放置可以显示 Flash 消息的 Laravel 4 辅助函数?

如何在 Laravel 5 中的每个相关输入字段旁边显示验证错误?

在 vue.js 中使用 Laravel 的Gate/Authorization

Laravel 不活动时间设置

Laravel 5如何获取路由动作名称?

php artisan migrate - SQLSTATE [HY000] [1045] 用户'laravel'@'localhost'的访问被拒绝

Laravel 4 控制器模板/Blade - 正确的方法?