如何在特定域中服务 hugo?
How to serve hugo in a specifc domain?
我在本地的laragon上安装了Hugo。我把它放在路径 localhost/hugosite 中。
当我 运行“hugo serve”时,该站点在 localhost:1313 中可见,但我想在“localhost/hugosite”中显示它。我怎样才能做到这一点?我尝试在配置中更改基础 url 但似乎什么也没发生。
您可以通过 -p
选项指定默认的 HTTP 端口 (80)。
$ hugo server -b http://localhost/hugosite -p 80
我在本地的laragon上安装了Hugo。我把它放在路径 localhost/hugosite 中。 当我 运行“hugo serve”时,该站点在 localhost:1313 中可见,但我想在“localhost/hugosite”中显示它。我怎样才能做到这一点?我尝试在配置中更改基础 url 但似乎什么也没发生。
您可以通过 -p
选项指定默认的 HTTP 端口 (80)。
$ hugo server -b http://localhost/hugosite -p 80