如何为 "directory" 路由设置默认文件
How to set default file for "directory" route
我可以为 http 服务器创建 .directory()
路由,例如,在 /
路径上,但它仅通过直接链接提供文件,例如 /index.html
。我怎样才能让它从 /
重定向到 /index.html
?
同样使用 .htaccess 文件。
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.co.uk [NC]
RewriteRule ^(.*)$ http://www.domain.co.uk/ [R=301,NC]
RewriteRule ^index.html$ http://www.domain.co.uk/ [R=301,L]
经过一些实验,我找到了适合我的解决方案。
routes.file("/", destinationDir + File.separator + "index.html");
routes.directory("/", Paths.get(destinationDir);
这是有效的,因为在文件的情况下,路由器需要完全匹配的路径,并且在执行目录前缀比较的情况下。
我可以为 http 服务器创建 .directory()
路由,例如,在 /
路径上,但它仅通过直接链接提供文件,例如 /index.html
。我怎样才能让它从 /
重定向到 /index.html
?
同样使用 .htaccess 文件。
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.co.uk [NC]
RewriteRule ^(.*)$ http://www.domain.co.uk/ [R=301,NC]
RewriteRule ^index.html$ http://www.domain.co.uk/ [R=301,L]
经过一些实验,我找到了适合我的解决方案。
routes.file("/", destinationDir + File.separator + "index.html");
routes.directory("/", Paths.get(destinationDir);
这是有效的,因为在文件的情况下,路由器需要完全匹配的路径,并且在执行目录前缀比较的情况下。