• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1RewriteEngine on
2
3# Avoid redirect loops
4RewriteCond %{ENV:REDIRECT_STATUS} 200
5RewriteRule ^ - [L]
6
7# Unlike the OpenGL ES and OpenGL reference pages, we're not keeping
8# old versions of the EGL man pages around. Just redirect links to
9# egl/sdk/docs/man/xhtml/*.html to the new HTML 5 pages in html/*.xhtml.
10
11RewriteRule ^xhtml/$ https://www.khronos.org/registry/egl/sdk/docs/man/ [L,R=301]
12RewriteRule ^xhtml/index.html https://www.khronos.org/registry/egl/sdk/docs/man/ [L,R=301]
13RewriteRule ^xhtml/(.*)\.html https://www.khronos.org/registry/egl/sdk/docs/man/html/$1.xhtml [L,R=301]
14