The process of installing Laravel 5.5 under Windows 10 64, PHP 7.0.22
1. Install Laravel by running the create-project command on the command line by composer, and run the command:composer create-project –prefer-dist Laravel/Laravel Laravel, as shown in Figure 1
2. Generate directory: E:\wwwroot\Laravel, as shown in Figure 2
3. Using nginx, adding the following code to the website configuration will forward all requests to the index.php front-end controller, as shown in Figure 3
location / {
try_files $uri $uri//index.php?$query_string;
}
4. Reload the nginx configuration file, as shown in Figure 4
.\nginx -s reload
5. Edit the hosts file, as shown in Figure 5
127.0.0.1www.laravel.dev
6. Open the URL:http://www.laravel.dev/ , normal, as shown in Figure 6





