GitHub 页尾斜线
GitHub Pages trailing slashes
在启用了 directory_indexes 的 GitHub 页面上使用 Middleman,我想知道我是否可以以某种方式摆脱结尾的斜线 GitHub 添加。
我的网址基本上是:/foo-bar -> /foo-bar/index.html
.
在 GitHub 页面上访问 /foo-bar
重定向到 /foo-bar/
。
有什么方法可以防止这种重定向吗?
A "trailing slash" redirect is issued when the server receives a request for a
URL http://servername/foo/dirname where dirname is a directory. Directories
require a trailing slash, so mod_dir issues a redirect to
http://servername/foo/dirname/.
问题在于 GitHub 页/Jekyll 按照您展示的方式构建
多于。要解决此问题,foo-bar
需要是文件而不是目录:
http://example.com/foo-bar.html
那么你应该可以做到:
http://example.com/foo-bar
在启用了 directory_indexes 的 GitHub 页面上使用 Middleman,我想知道我是否可以以某种方式摆脱结尾的斜线 GitHub 添加。
我的网址基本上是:/foo-bar -> /foo-bar/index.html
.
在 GitHub 页面上访问 /foo-bar
重定向到 /foo-bar/
。
有什么方法可以防止这种重定向吗?
A "trailing slash" redirect is issued when the server receives a request for a URL http://servername/foo/dirname where dirname is a directory. Directories require a trailing slash, so mod_dir issues a redirect to http://servername/foo/dirname/.
问题在于 GitHub 页/Jekyll 按照您展示的方式构建
多于。要解决此问题,foo-bar
需要是文件而不是目录:
http://example.com/foo-bar.html
那么你应该可以做到:
http://example.com/foo-bar