我有一个项目在ubuntu-apache2中使用laravel 5.3运行。问题是laravel对某些用户起作用,但在其他用户上却没有。当您发出网址请求时,网页会保持不变,您看不到任何内容。这很奇怪,因为我有正常使用该应用程序的用户。
我看到了apache日志,我可以看到302请求但不是答案。我将site-avaible conf文件根目录更改为根路径,我可以看到索引,所以我认为问题出在.htacces文件中,虽然我没有做任何更改。这是我的.conf - >
ServerAdmin serveradmin@serveradmin.com
ServerName localhost
ServerAlias theurlofmypage
DocumentRoot /var/www/html/extranet/public
<Directory "/var/www/html/extranet/public">
AllowOverride All
Options FollowSymLinks Indexes
Order allow,deny
Allow from all
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
这是.htacces文件:
<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>
任何人都可以帮助我吗?
答案 0 :(得分:0)
302很可能是一个Laravel响应,而不是一个apache的事情,就我所知,你看到你用301重定向。 我有一个例子,这也让我疯了。它发生的原因是我在代码中的某处放置了一个redirect(),并且有些请求触发了它。它重定向回自身到一个错误命名空间的部分,它没有飞行。 我所能推荐的只是暂时禁用中间件和请求(验证)。如果这不起作用,请尝试查找所有中止并重定向()。