# Turn on URL rewriting
RewriteEngine On

# Set base directory
RewriteBase /platform

# Protect hidden files from being viewed
<Files .*>
	Order Deny,Allow
	Deny From All
</Files>

# Rewrite all other URLs to httpdocs
RewriteRule .* httpdocs/$0 [PT]
