public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
Search Repo:
tedkulp (author)
Tue May 09 14:47:26 -0700 2006
commit  59290883875f444479115164e9df10c9ad278936
tree    efba70ecf5d89c15ef0b3e9b19218011fa0e4d38
parent  69f253f86ff7fc624279c8618d3506a01a56a4d0
cmsmadesimple-2-0 / doc / htaccess.txt
100644 12 lines (10 sloc) 0.34 kb
1
2
3
4
5
6
7
8
9
10
11
12
#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off
 
# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On
 
#Rewrites page.shtml as index.php?page
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]