diff --git a/.htaccess b/.htaccess index 30e94f5..a3f7810 100644 --- a/.htaccess +++ b/.htaccess @@ -1,3 +1,9 @@ +# Don't show directory listings for URLs which map to a directory. +Options -Indexes + +# Follow symbolic links in this directory. +Options +FollowSymLinks + # Make HTMLy handle any 404 errors. ErrorDocument 404 /index.php @@ -77,8 +83,8 @@ DirectoryIndex index.php index.html index.htm # Pass all requests not referring directly to files in the filesystem to index.php. RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^ index.php [L] + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule . index.php [L] diff --git a/README.md b/README.md index dbc0c84..5e6539c 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ Features - Responsive design - Lightbox - User role +- Online backup Requirements ------------