Options -MultiViews -Indexes +FollowSymlinks

ErrorDocument 404 /404.php

# If mod_security is enabled, attempt to disable it.
# Note, this will work on the majority of hosts but on
# some it may cause a 500 Internal Server Error so you
# can feel free to remove the mod_sec block below.

<IfModule mod_security.c>
	SecFilterEngine Off
	SecFilterScanPOST Off
</IfModule>

# Below is what creates our magical SEO links!

<IfModule mod_rewrite.c>

	RewriteEngine On
        RewriteBase /

RewriteRule ^([^/]*)/([^/]*)\.html$ content.php?pageid=$1&title=$2 [L]

</IfModule>

# If Apache is compiled with built in mod_deflade/GZIP support then
# GZIP Javascript, CSS, HTML and XML so they're sent to faster.

<IfModule mod_deflate.c>
	AddOutputFilterByType DEFLATE application/x-javascript text/css text/html text/xml
</IfModule>