Install/deploy/run 共享主机上的 Symfony 4
Install/deploy/run Symfony 4 on shared hosting
我是 Symfony 的新手,正在寻找一种方法让它在我们的共享主机环境中发挥作用。我们想创建一个小的 api,但首先我们想看看我们是否让 SF4 在我们的共享环境中工作。
我有一个 SSH 帐户,他们为我们打开了一个端口。
首先我创建一个新项目:
composer create-project symfony/skeleton sf
其次安装服务器:
composer require server
最后我启动了服务器:
./bin/console server:run *:3000
在此之后我收到一条消息,一切都是 运行:
[OK] Server listening on http://0.0.0.0:3000
// Quit the server with CONTROL-C.
PHP 7.1.3 Development Server started at Mon Jan 22 19:41:50 2018
Listening on http://0.0.0.0:3000
Document root is /home/MyUser/public_html/testapp/sf/public
Press Ctrl-C to quit.
当我浏览到 http://my-url:3000 时,页面未加载。
有人能帮我解决吗?
谢谢!
我更改了设置,因此不需要启动服务器。
见Symfony 4 404 Page not found on all routes except root
我是 Symfony 的新手,正在寻找一种方法让它在我们的共享主机环境中发挥作用。我们想创建一个小的 api,但首先我们想看看我们是否让 SF4 在我们的共享环境中工作。
我有一个 SSH 帐户,他们为我们打开了一个端口。
首先我创建一个新项目:
composer create-project symfony/skeleton sf
其次安装服务器:
composer require server
最后我启动了服务器:
./bin/console server:run *:3000
在此之后我收到一条消息,一切都是 运行:
[OK] Server listening on http://0.0.0.0:3000
// Quit the server with CONTROL-C.
PHP 7.1.3 Development Server started at Mon Jan 22 19:41:50 2018
Listening on http://0.0.0.0:3000
Document root is /home/MyUser/public_html/testapp/sf/public
Press Ctrl-C to quit.
当我浏览到 http://my-url:3000 时,页面未加载。
有人能帮我解决吗?
谢谢!
我更改了设置,因此不需要启动服务器。
见Symfony 4 404 Page not found on all routes except root