我有一个静态站点,其设置如下:
location / { index index.html; }
location /about/ { index about.html; }
location /app/ { index app.html; }
location /app/support/ { index support.html; }
这种方法不可扩展,但我想继续对索引文件采用这种命名做法。
如何编写一个常见案例来解决将目录名称包装到具有相同名称的索引文件中的问题?谢谢!
我有一个静态站点,其设置如下:
location / { index index.html; }
location /about/ { index about.html; }
location /app/ { index app.html; }
location /app/support/ { index support.html; }
这种方法不可扩展,但我想继续对索引文件采用这种命名做法。
如何编写一个常见案例来解决将目录名称包装到具有相同名称的索引文件中的问题?谢谢!