summaryrefslogtreecommitdiffstats
path: root/.htaccess
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-05-27 00:13:05 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-05-27 00:13:05 (EDT)
commit6777eb1fa007fd1f55525b23cdd5b28e02c77982 (patch)
tree0a379d0b17f99d231846f519dcf789fa8b4ef3b9 /.htaccess
parent2d3c3e2b52479a162d03791f8fd35f562096ad09 (diff)
Fix URL rewriting.
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess5
1 files changed, 3 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index 0af5056..158610e 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,5 +1,6 @@
-Options +Includes
+Options +Includes +FollowSymLinks
XBitHack on
RewriteEngine on
-RewriteRule ^(.*) $1.html [L]
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteRule ^(.*)$ $1.html [L]