-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3274a4
commit fff9594
Showing
2 changed files
with
71 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Turn on URL rewriting | ||
RewriteEngine On | ||
|
||
# Installation directory | ||
RewriteBase /kohana_3.2_blog/ | ||
|
||
# Protect hidden files from being viewed | ||
<Files .*> | ||
Order Deny,Allow | ||
Deny From All | ||
</Files> | ||
|
||
# Protect application and system files from being viewed | ||
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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters