好的我是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?我按照快速入门指南上的步骤,我错过了什么?
答案 0 :(得分:72)
似乎您的Laravel应用程序可以通过Apache HTTP别名访问,因为您的URL看起来像:http://localhost/laravel/
。如果是并假设 http://localhost/laravel
指向您的公共目录,请按照以下步骤操作:
/index.php/
,在您的情况下:http://localhost/laravel/index.php/users
。如果它可以工作(没有404),那么问题在于Apache HTTP的重写模块配置,你应该按照下面的步骤进行操作。public/.htaccess
。RewriteEngine On
行下添加RewriteBase /laravel/
。基本上,如果你的app位于别名或虚拟目录(比如http://localhost/alias
),你应该在重写规则中添加一个条目,用alias
重写基目录
答案 1 :(得分:4)
由于指令 AllowOverride 设置为无,Apache可能无法读取公共/ .htaccess文件。尝试将其设置为全部。
Laravel 4 simple route not working using mod_rewrite, and .htaccess
答案 2 :(得分:3)
上面的Rubens很好地解释了这个问题,一个更简单的解决方案就是通过发出这个命令来使用提供的内置PHP服务器
php artisan serve --port=8080
请注意,我在这里使用端口8080,您可以省略它。现在您可以通过访问
来浏览网站localhost/users
它应该有效!
答案 3 :(得分:2)
我有同样的问题,花了好几个小时来解决它。
我在同一个域下有几个应用程序,但是在不同的细分市场中。所以Laravel的网址是http://myhostname/mysubdir/
我的控制器仅作为http://myhostname/mysubdir/index.php/mycontroller
在/var/www/.../public/.htaccess我放RewriteBase /mysubdir
并且工作了!!!
答案 4 :(得分:1)
我知道这个问题已经有4年了,但它仍然具有重要意义.Rubens Mariuzzo的回答是正确的,但我想补充一点。你说
“文档中存在大量漏洞,因此需要花费大量精力和谷歌搜索来填补空白才能获得Laravel设置”
对于初学者来说,很难找到配置Laravel的正确方法。一旦掌握了它,开发Laravel很有趣:)。有一些正确的方法可以做到这一点。
详情请参阅此博客http://masterlaravel.blogspot.in/2017/08/laravelquick-start-composer-create.html
答案 5 :(得分:0)
请参阅以下网址并查看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;
}
答案 6 :(得分:0)
感谢。 @rubens对上述内容的了解以及@GaryJ here的评论让我这样做是为了让它能够从我的Apache虚拟主机文件中运行。
从vhosts config节点内的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存在,默认设置本身就有效。
答案 7 :(得分:0)
在我的情况下(Ubuntu 14.04 LTS & Apache 2.2
)我被困在@Rubens'的第一步。解。我可以看到包含此网址的页面: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 (他们摇摇欲坠)
除教程外,我还设置了DocumentRoot
(在example.com.conf
文件中),如下所示:
DocumentRoot /var/www/laravel/public
是的,public
在这里是最重要的。
顺便说一下,不要将RewriteBase /laravel/
放到.htacces
文件中,否则会导致HTTP/500
错误。
现在,我可以看到example.com/users
页面。
答案 8 :(得分:-3)
我之前关于问题描述的帖子已被删除,但它与此处描述的情况类似。
无论如何......我只是尝试了这里描述的所有可能性以及其他页面,我没有找到解决问题的方法。
Laraval的全新安装根本无法工作....在尝试从这篇文章的每一个想法后我决定创建另一个新装置和奇迹发生这个安装实际上正在工作...
所以我的建议是:如果你无法解决这个问题,只需尝试创建laravel的另一个安装,它可能实际上有效。
这可能实际上是解决问题的最简单方法,以防您从刮擦开始。