From ef2854556bcbe6a0539a94d76586f285ab5acc0c Mon Sep 17 00:00:00 2001 From: bluehawk Date: Mon, 1 Mar 2010 20:22:17 -0700 Subject: [PATCH] Changed example.htaccess to redirect application and system, rather than 403 forbidden Signed-off-by: Woody Gilk --- example.htaccess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example.htaccess b/example.htaccess index b7a9df8..1c2f5d9 100644 --- a/example.htaccess +++ b/example.htaccess @@ -11,11 +11,11 @@ RewriteBase /kohana/ # Protect application and system files from being viewed -RewriteRule ^(?:application|modules|system)\b - [F,L] +RewriteRule ^(?:application|modules|system)\b index.php/$0 [L] # Allow any files or directories that exist to be displayed directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Rewrite all other URLs to index.php/URL -RewriteRule .* index.php/$0 [PT] \ No newline at end of file +RewriteRule .* index.php/$0 [PT]