无法在Laravel 5.5上访问HTTPS

时间:2018-02-28 13:45:58

标签: php laravel .htaccess https laravel-5.5

我有一个工作的Laravel网站。 它完全与' http://'一起使用,但是当我尝试使用' httpS://'它返回: 抱歉,找不到您要查找的页面。

我尝试使用HTTPS和中间件强制系统。它强制它,当您键入http://example.com时,它会重定向到https://example.com ...但仍然无法加载页面"抱歉......"。

另外我想注意,我正在使用重写,所以我可以更改域的public_html文件夹。代码是:

RewriteEngine on 
RewriteCond %{HTTP_HOST} ^(www.)?example.com$ 
RewriteCond %{REQUEST_URI} !^/examplecom/public/ 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ /examplecom/public/$1 
RewriteCond %{HTTP_HOST} ^(www.)?example.com$ 
RewriteRule ^(/)?$ examplecom/public/index.php [L]

错误可能是因为那个吗?有人可以帮我这个吗?谢谢!

0 个答案:

没有答案