[Gnucash-changes] r12891 - htdocs/trunk - enabling initial index.php redirect to en/

Neil Williams codehelp at cvs.gnucash.org
Thu Jan 19 12:09:35 EST 2006


Author: codehelp
Date: 2006-01-19 12:09:34 -0500 (Thu, 19 Jan 2006)
New Revision: 12891
Trac: http://svn.gnucash.org/trac/changeset/12891

Added:
   htdocs/trunk/favicon.ico
   htdocs/trunk/index.php
Modified:
   htdocs/trunk/.htaccess
Log:
enabling initial index.php redirect to en/

Modified: htdocs/trunk/.htaccess
===================================================================
--- htdocs/trunk/.htaccess	2006-01-19 17:08:47 UTC (rev 12890)
+++ htdocs/trunk/.htaccess	2006-01-19 17:09:34 UTC (rev 12891)
@@ -1 +1 @@
-DirectoryIndex index.phtml
+DirectoryIndex index.phtml index.php index.html

Added: htdocs/trunk/favicon.ico
===================================================================
(Binary files differ)


Property changes on: htdocs/trunk/favicon.ico
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: htdocs/trunk/index.php
===================================================================
--- htdocs/trunk/index.php	2006-01-19 17:08:47 UTC (rev 12890)
+++ htdocs/trunk/index.php	2006-01-19 17:09:34 UTC (rev 12891)
@@ -0,0 +1,21 @@
+<?php
+header ("Location: en/");
+exit;
+# Notes for those editing these pages.
+#
+# all pages must call emulate_globals_on.php
+# Two variables then become available on all systems:
+# $toppath is for filesystem paths, generally include files.
+# $topdir is for http paths e.g. images and other user-facing resources.
+# To make your pages portable, always precede a local href or src
+# location with $topdir:
+# src="<?php echo $topdir; ?>/path"
+# this allows mirrors to install the site in a sub-directory.
+#
+# Within content, the absolute rules are:
+# 1. If you OPEN a tag, YOU are responsible for closing it
+# 2. Escape all entities: use &amp; &lt; &gt; - watch those
+# Bugzilla or SourceForge URL links: all query strings need to
+# use &amp;
+?>
+



More information about the gnucash-changes mailing list