37

好的,我是 Laravel 的新手,所以直接阅读文档开始。文档中存在大量漏洞,因此需要花费大量精力和谷歌搜索来填补空白,以便设置 Laravel。我现在已经设置好并继续快速入门指南中的下一步。我创建了我的路线

Route::get('users', function()
{
     return 'Users!';
});

现在它说:

Now, if you hit the /users route in your web browser, you should see Users!

所以我打了起来:

http://localhost/laravel/users 

但得到一个404?我试过了

http://localhost/laravel/public/users 

但仍然是404?我按照这封信的快速入门指南中的步骤进行操作,我错过了什么?

4

9 回答 9

73

似乎您的 Laravel 应用程序可以通过 Apache HTTP 别名访问,因为您的 URL 看起来像:http://localhost/laravel/. 如果是这种情况并假设http://localhost/laravel指向您的公共目录,请按照以下步骤操作:

  1. 尝试导航到您的预期路线/index.php/,在您的情况下使用http://localhost/laravel/index.php/users. 如果它有效(没有 404)那么你的问题是 Apache HTTP 的重写模块配置,你应该按照下面的步骤。
  2. 编辑文件public/.htaccess
  3. 在该行下RewriteEngine On添加RewriteBase /laravel/.
  4. 尝试导航到现有路线。

基本上,如果您的应用程序驻留在别名或虚拟目录中(例如http://localhost/alias,您应该在重写规则中添加一个条目以使用.alias

于 2013-06-03T14:25:37.547 回答
4

上面的鲁本斯很好地解释了这个问题,一个更简单的解决方案是通过发出这个命令来使用提供的内置 PHP 服务器

php artisan serve --port=8080

注意我这里使用的是 8080 端口,你可以省略它。现在你可以通过转到

localhost/users

它应该工作!

于 2015-07-09T08:42:52.283 回答
3

由于指令AllowOverride设置为None ,Apache 可能不会读取 public/.htaccess 文件。尝试将其设置为All

Laravel 4 简单路线无法使用 mod_rewrite 和 .htaccess

于 2014-04-04T05:01:31.587 回答
2

我遇到了同样的问题并花了几个小时来解决它。我在同一个域下有几个应用程序,但在不同的细分市场。所以 Laravel 的 url 是http://myhostname/mysubdir/

我的控制器仅作为http://myhostname/mysubdir/index.php/mycontroller

在 /var/www/.../public/.htaccess 上,我放置RewriteBase /mysubdir并工作了!!!

于 2014-04-03T20:13:24.397 回答
1

我知道这个问题已经有 4 年历史了,但它仍然具有重要意义。Rubens Mariuzzo 的回答是正确的,但我想补充几点。你说

“文档中存在大量漏洞,因此需要花费大量精力和谷歌搜索来填补空白,以便设置 Laravel”

对于初学者来说,很难找到配置 Laravel 的正确方法。一旦掌握了它,开发 Laravel 就会很有趣 :) 。有一些正确的方法可以做到这一点。

  1. 下载 Laravel
  2. 配置数据库
  3. 在 .env 中映射数据库
  4. 制作身份验证:php artisan make:auth
  5. 一起创建模型和迁移: php artisan make:model Todo -m
  6. 迁移:php artisan 迁移
  7. 一起创建控制器和路由: php artisan make:controller TodoController --resource
  8. 为每个动作创建视图
  9. 编码控制器

详细描述在这篇博客http://masterlaravel.blogspot.in/2017/08/laravelquick-start-composer-create.html

于 2017-08-21T11:14:02.580 回答
0

请参考这个跟随 url 并查看 RoboTamer 的配置:

http://forums.laravel.io/viewtopic.php?id=511

它解决了我和你一样的问题

nginx中的解决方案:

服务器 {

    server_name .laravel.dev;
    root /home/tamer/code/laravel/public;

    index index.php index.html;

    #browse folders if no index file
    autoindex on; 

    # serve static files directly
    location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
        access_log off;
        expires max;
    }

    # removes trailing slashes (prevents SEO duplicate content issues)
    if (!-d $request_filename)
    {
        rewrite ^/(.+)/$ /$1 permanent;
    }

    # enforce NO www
    if ($host ~* ^www\.(.*))
    {
        set $host_without_www $1;
        rewrite ^/(.*)$ $scheme://$host_without_www/$1 permanent;
    }


    # canonicalize codeigniter url end points
    # if your default controller is something other than "welcome" you should change the following
    if ($request_uri ~* ^(/lobby(/index)?|/index(.php)?)/?$)
    {
        rewrite ^(.*)$ / permanent;
    }

    # removes trailing "index" from all controllers
    if ($request_uri ~* index/?$)
    {
        rewrite ^/(.*)/index/?$ /$1 permanent;
    }

    # unless the request is for a valid file (image, js, css, etc.), send to bootstrap
    if (!-e $request_filename)
    {
        rewrite ^/(.*)$ /index.php?/$1 last;
        break;
    }

    # catch all
    error_page 404 /index.php;

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass unix:/tmp/php.socket;
        fastcgi_index index.php;
        #include fastcgi_params;
        include /home/tamer/code/nginx/fastcgi_params;
    }
    access_log /home/tamer/code/laravel/storage/logs.access.log;
    error_log  /home/tamer/code/laravel/storage/logs.error.log;

}

于 2013-10-29T03:37:19.563 回答
0

谢谢。@rubens 对上述内容的了解,以及@GaryJ 的评论我这样做是为了让它在我的 Apache 虚拟主机文件中工作。

从 vhosts 配置节点中 laravel 中的 .htaccess 文件复制这些行。删除了我的 .htaccess 文件(它无论如何都没有被应用,我在一个 windows apache 虚拟主机上,laravel env)

RewriteEngine On

# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

更好:稍后阅读 @Ag0r0 的回复,这很有效。我错过了允许覆盖,使上述必要。一旦 allowoverride all 在那里,默认设置本身就起作用了。

于 2014-08-23T14:42:57.100 回答
0

在我的情况下(Ubuntu 14.04 LTS & Apache 2.2),我被困在@Rubens 解决方案的第 1 步。我可以看到带有此 url 的页面:http://localhost/laravel/index.php/users但第 2 步和其他步骤不起作用。

我也尝试添加RewriteBase /laravel/public.htaccess但也没有用。

然后我在这个很棒的教程的帮助下设置了一个新的虚拟主机:https ://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu- 14-04- lts(他们用这些 tuts 摇滚)

除了教程之外,我还设置DocumentRoot了(在example.com.conf文件中)这样的:

DocumentRoot /var/www/laravel/public

public的,这很重要。

顺便说一句,不要把RewriteBase /laravel/你的.htacces文件,否则你会得到HTTP/500错误。

现在,我可以看到example.com/users页面。

于 2014-08-28T13:07:30.743 回答
-3

我之前描述问题的帖子已被删除,但与此处描述的情况相似。

无论如何......只是我已经尝试了这里以及其他页面上描述的所有可能性,但我没有找到解决我的问题的方法。

全新安装的 Laraval 根本没有用......在尝试了这篇文章的所有想法之后,我决定创建另一个全新的安装,奇迹发生了这个安装实际上正在工作......

所以我的建议是:如果您无法解决此问题,请尝试创建另一个 laravel 安装,它可能确实有效。

如果您从头开始,这实际上可能是解决问题的最简单方法。

于 2017-03-24T19:56:30.110 回答