Revision: 498
http://acmcontester.svn.sourceforge.net/acmcontester/?rev=498&view=rev
Author: panzaboi
Date: 2009-02-12 16:27:14 +0000 (Thu, 12 Feb 2009)
Log Message:
-----------
Updated .htaccess
Modified Paths:
--------------
website/httpdocs/.htaccess
Modified: website/httpdocs/.htaccess
===================================================================
--- website/httpdocs/.htaccess 2009-02-07 06:48:33 UTC (rev 497)
+++ website/httpdocs/.htaccess 2009-02-12 16:27:14 UTC (rev 498)
@@ -1,7 +1,6 @@
-RewriteEngine on
-
-RewriteCond %{REQUEST_FILENAME} !-s
-RewriteCond %{REQUEST_FILENAME} !-d
-RewriteRule .* index.php [L]
-
-DirectoryIndex index.php
+RewriteEngine On
+RewriteCond %{REQUEST_FILENAME} -s [OR]
+RewriteCond %{REQUEST_FILENAME} -l [OR]
+RewriteCond %{REQUEST_FILENAME} -d
+RewriteRule ^.*$ - [NC,L]
+RewriteRule ^.*$ /index.php [NC,L]
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|