forked from science-ation/science-ation
11 lines
270 B
ApacheConf
11 lines
270 B
ApacheConf
php_flag register_globals off
|
|
php_flag magic_quotes_gpc off
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{SCRIPT_FILENAME} !-f
|
|
RewriteCond %{SCRIPT_FILENAME} !-l
|
|
RewriteCond %{SCRIPT_FILENAME} !-d
|
|
RewriteRule ^web/(.*)$ cms.php?f=$1 [L]
|
|
RewriteRule ^api/(.*)$ api.php?request=$1 [L]
|
|
|