Check whether the domain is being served over http or https in your browser url bar. Chrome recently rolled out a new updated that forces all .dev tld's to be served over https protocol (using hsts), even locally. Since your vhost entry is using port 80, my first guess is that may be the issue. If that is indeed the problem, you'll need to add a vhost entry for port:443as well as a self signed cert. Alternative is to just not use .dev and choose another tld for your local development environment.
I ran into a similar problem a couple weeks ago & switching my tld from .dev resolved it.
Acrylic DNS Proxy does not work to create dynamically wildcard sub domain
In Laravel 5.4 I want to create dynamically subdomain.
According to This Answer in SO I followed this instructions to do that:
First I downloaded and installed Acrylic DNS Proxy program. then I added this line at end of Acrylic Host file like this:
127.0.0.1 *.loverspay.dev loverspay.dev
And added this to httpd-vhosts in apache extra directory:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot 'd:/wamp/www/loverspay/public'
ServerName loverspay.dev
ServerAlias *.loverspay.dev
<Directory 'd:/wamp/www/loverspay/public'>
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Also I changed Preferred DNS Server to 127.0.0.1 in Local Area Connection Properties.
And this is my route to control wildcard subdomain that should show main route in larvel :
Route::group(['domain' => '{account}.loverspay.dev'], function ($account) {
Route::get('/', function ($account, $id) {
return view('home');
});
});
Now after starting acrylic DNS proxy when I go to loverspay.dev all things worked find But when I want to open ahmad.loverspay.dev for example only a This site can’t be reachedessage shown in chrome.
I followed bellow instruction for win 8 and problem solved : http://mayakron.altervista.org/wikibase/show.php?id=AcrylicWindows8Configuration
Please or to participate in this conversation.