We Recommend

Pro Apache Pro Apache
In addition to installation, maintenance, and deployment, the book demonstrates how to configure Apache to use Perl, PHP, and Python as server-side scripting languages. And unlike other books on Apache, Pro Apache provides comprehensive information on both major revisions - 1.3 and 2.0 - of the software.


Posted By

bpj1966 on 06/01/08


Tagged

textmate htaccess CMSMadeSimple


Versions (?)


CMSMadeSimple .htaccess


Published in: Apache 


  1. #CMSMadeSimple
  2. #php_flag magic_quotes_gpc Off
  3. #php_flag register_globals Off
  4. #php_flag session.use_trans_sid Off
  5. # Make sure you have Options FollowSymLinks
  6. # and Allow on
  7. RewriteEngine On
  8. #Rewrites page.shtml as index.php?page
  9. RewriteCond %{REQUEST_FILENAME} !-f [NC]
  10. RewriteCond %{REQUEST_FILENAME} !-d [NC]
  11. RewriteRule ^(.+)$ index.php?page=$1 [QSA]

Report this snippet 

You need to login to post a comment.