1
1
1programmer2018-04-01 11:44:55
Digital certificates
1programmer, 2018-04-01 11:44:55

How to remove https certificate in laravel?

Hi all. I deployed the Laravel project, made migrations, etc. (the project is ready), I run it through php artisan serv. There is a personal account there, and when I try to go into it, it registers https for me, because of this it knocks out an error on LAN. How can I remove this certificate?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
J
Jeros_Lite, 2018-04-09
@Jeros_Lite

Force a redirect in Htaccses from https to http
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question