我会直截了当地说.. 我只能访问喜欢'返回'的路线 在我的routes.php中,内容是:
//This two routes below triggers an HTTP 500
Route::get('/', function () {
return view('landing');
});
Route::controller('/app', 'UserController');
// The routes below return what they should return
Route::get('test', function(){
$data = Session::all();
var_dump($data);
});
Route::get('/hash/{hash}', function( $hash = '' ) {
return bcrypt($hash);
});
基于我在那里解释的代码和注释,它可以工作并返回HTTP 500页面以外的内容。测试你可以在这里访问我的网站: http://stage.compassbooking.com/
所以我尝试了这个场景,可能是因为它返回的功能。
return view('landing');
虽然听起来多么愚蠢,但我试图将其删除并改为:
return 'test';
这是我的.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
我设法将vhost或conf文件指向公共目录。 那么你认为这个问题是什么? 我试着做了
composer update
或
composer install
希望这只是供应商的问题,但没有发生任何事情。 我没有选择,有人能指出我正确的方向吗?
答案 0 :(得分:0)
好的,我得到了它。但这很奇怪,不是我预期的方式。
我将其切换到托管的子域(compass.maindomain.com),希望它能解决问题。但事实并非如此,我干涉了权限。
我做了
chmod 777 */*
什么都没发生,仍然有相同的HTTP 500 所以我将所有文件和文件夹以及子文件和文件夹更改为644 现在我收到了存储/子文件下的权限错误,因为我检查了这些文件,但它们不存在,所以我想将存储/ *的权限更改为777:
chmod 777 -f storage/*
然后voala修好了它。
现在我把它转回http://stage.compassbooking.com/,这样你就会知道并看到它有效。
我知道如果遇到这个问题,这可能不是每个人的解决方案。只是为了确保始终干涉东西。总是修补,直到它破裂:)
感谢帮助人员:)