This commit starts the refactoring of the gadget rendering implementation to accomeda...
[shindig.git] / php / .htaccess
blob13016a21ab1f51e9286bb274767023f915adad83
1 <IfModule mod_rewrite.c>
2         RewriteEngine On
3         RewriteCond %{REQUEST_FILENAME} !-f
4         RewriteCond %{REQUEST_FILENAME} !-d
5         # NOTE: If you added a web_prefix to config, add it here too, e.g.:
6         #RewriteRule (.*) /shindig/php/index.php [L]
7         RewriteRule (.*) index.php [L]
8         # for OAuth signatures to work for POSTed data, always_populate_raw_data needs to be turned on
9         php_flag always_populate_raw_post_data On
10 </IfModule>