在 Bootstudio 中设置默认扩展网页名称
Set default extension webpage name in Bootstudio
我正在使用 BootstrapStudio 为我的网站创建一些页面。
我通常使用 htm 作为网页的扩展而不是 html,所以我想知道是否有任何方式可以更改 defautl html BootstrapStudio 中的扩展。
谢谢
我认为这在 Bootstrap Studio 中是不可能的,但您可以在导出站点时将脚本写入 运行 以更改所有文件扩展名。
试着看看 https://bootstrapstudio.io/tutorials/export-scripts
如果您在 linux 上 运行ning Bootstrap Studio,脚本将类似于:
#!/bin/bash
cd ""
for f in *.html; do mv -- "$f" "${f%.html}.htm"; done
我正在使用 BootstrapStudio 为我的网站创建一些页面。 我通常使用 htm 作为网页的扩展而不是 html,所以我想知道是否有任何方式可以更改 defautl html BootstrapStudio 中的扩展。 谢谢
我认为这在 Bootstrap Studio 中是不可能的,但您可以在导出站点时将脚本写入 运行 以更改所有文件扩展名。
试着看看 https://bootstrapstudio.io/tutorials/export-scripts
如果您在 linux 上 运行ning Bootstrap Studio,脚本将类似于:
#!/bin/bash
cd ""
for f in *.html; do mv -- "$f" "${f%.html}.htm"; done