forked from science-ation/science-ation
7e84ab0222
Add .htaccess rules for the cms Add cms page display code and convert index.php to pull from the cms If no page title is passed to send_header(), output the fair name in the <title> tag
9 lines
194 B
ApacheConf
9 lines
194 B
ApacheConf
php_flag register_globals off
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{SCRIPT_FILENAME} !-f
|
|
RewriteCond %{SCRIPT_FILENAME} !-l
|
|
RewriteCond %{SCRIPT_FILENAME} !-d
|
|
RewriteRule ^web/(.*)$ cms.php?f=$1 [L]
|
|
|