Here's my htaccess file
CODE
php_value arg_separator.output &
php_flag session.use_trans_sid off
DirectoryIndex home/
ErrorDocument 404 /404.html
<FilesMatch "^contact$">
ForceType application/x-httpd-php
</FilesMatch>
<FilesMatch "^home$">
ForceType application/x-httpd-php
</FilesMatch>
<FilesMatch "^about$">
ForceType application/x-httpd-php
</FilesMatch>
<FilesMatch "^work$">
ForceType application/x-httpd-php
</FilesMatch>
Basically what happens is that I get a 404 page for all the pages (contact, home, about, work)
