Project run on port [PHP]
Generally :
php -S localhost:8000
Laravel :
php artisan serve [Port number will be atomically 8000]
php artisan serve --port=8888 [Run on custom port]
php artisan serve --host=192.168.152.160 --port=8800 [Run on custom IP and custom port]
php -S localhost:8000
Laravel :
php artisan serve [Port number will be atomically 8000]
php artisan serve --port=8888 [Run on custom port]
php artisan serve --host=192.168.152.160 --port=8800 [Run on custom IP and custom port]
Comments
Post a Comment