Laravel .dev virtual host problem
Before some days chrome remove .dev server http excess that cause many developer facing to much problem to create virtual host . In a small trick you can solve your problem. Use .test server instant of .dev in your virtual host .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<VirtualHost *:80> ServerAdmin admin@test.com ServerName tms.test ServerAlias www.tms.test DocumentRoot /var/www/html/tms/public <Directory /var/www/html/tms> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> |
inside your site- available folder create this file similer then restart your server and etc… Read More »