运行 PHP Artisan 不更改目录

Run PHP Artisan Without Change Directory

如何 运行 命令 php artisan 在不更改项目目录的情况下提供服务?

我尝试运行这个命令,但没有任何反应

php /home/john/Documents/project/ artisan serve --port=1111

我想将此命令插入别名 bash 别名,这样我就不需要再插入端口了。 请帮助我,如何运行 artisan指定目录?

尝试删除 space:

php /home/john/Documents/project/artisan serve --port=1111