Modified Resources so that external (non-HTML) files could be linked to and viewed
[comp80.git] / .htaccess
blob29c024a50900180a17797b296ebadbc58d5ac8b4
1 <IfModule mod_rewrite.c>
2         RewriteEngine   on
3         RewriteCond     %{REQUEST_FILENAME}     !-d
4         RewriteCond     %{REQUEST_FILENAME}     !-f
5         RewriteRule     (.*) index.php?page=$1  [QSA,L]
6 </IfModule>