我在laravel中重定向url时遇到问题。
我已经在.env和.htaccess文件中进行了配置,但是laravel始终将url定向到https并始终返回错误ERR_CONNECTION_REFUSED
。我在http://link.com开发虚拟主机。
// .evn
APP_ENV=development
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_KEY=m1FZ2sfRqlooiYEDTYNOaoJnnFmfJj0d
APP_URL=http://link.com/
// .htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteBase /
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
使用MAMP PRO的Web服务器和数据库服务器。 请帮帮我