在没有 SSH 的情况下安装 Hugo Web 引擎
Installing Hugo web engine without SSH
我使用不包括安全 shell 访问的基本托管服务,还有其他方法可以部署 Hugo 吗?
After running hugo server
for local web development, you need to do
a final hugo run without the server
command and without --watch
or
-w
to rebuild your site.
then, You may deploy your site by copying the public/
directory (by
FTP, SFTP, WebDAV, Rsync, git push, etc.) to your web host.
由于 Hugo 生成静态网站,您的网站可以在任何地方托管,因为最基本的主机提供 FTP 访问权限。更多请看Using Hugo
我使用不包括安全 shell 访问的基本托管服务,还有其他方法可以部署 Hugo 吗?
After running
hugo server
for local web development, you need to do a final hugo run without theserver
command and without--watch
or-w
to rebuild your site.then, You may deploy your site by copying the
public/
directory (by FTP, SFTP, WebDAV, Rsync, git push, etc.) to your web host.
由于 Hugo 生成静态网站,您的网站可以在任何地方托管,因为最基本的主机提供 FTP 访问权限。更多请看Using Hugo