Add the .htaccess file.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 25 May 2006 22:43:15 +0000 (22:43 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 25 May 2006 22:43:15 +0000 (22:43 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@1505 fdb21ef1-2011-0410-befe-b5e4ea1792b1

scons.org/.htaccess [new file with mode: 0644]

diff --git a/scons.org/.htaccess b/scons.org/.htaccess
new file mode 100644 (file)
index 0000000..1e9ff61
--- /dev/null
@@ -0,0 +1,15 @@
+RewriteEngine On
+RewriteBase   /
+
+# Point default locations to the wiki's front page:
+RewriteRule ^wiki/?$  /cgi-sys/cgiwrap/scons/moin.cgi
+RewriteRule ^wiki/index\.html$  /cgi-sys/cgiwrap/scons/moin.cgi
+
+# This rewrites /wiki/FooPage to /cgi-sys/.../FooPage.
+# Works because this .htaccess file is in /wiki, so filenames
+# passed into us here are relative to that dir.
+# The name passed in here just looks like "FooPage".
+# Local wiki mod: static wiki content is in /wikidata so this
+# URL rewriting will work.
+RewriteRule  ^wiki/(.*)$   /cgi-sys/cgiwrap/scons/moin.cgi/$1
+