root/apps/notifier/public/.htaccess

Revision 899 (checked in by goldoraf, 2 years ago)

Finished notifier demo app

Line 
1 RewriteEngine On
2
3 # If your application is accessed via an Alias directive,
4 # then you MUST also set the RewriteBase in this htaccess file.
5 #
6 # Example:
7 #   Alias /myapp /path/to/myapp/public
8 RewriteBase /notifier
9
10 RewriteRule ^$ index.html [QSA]
11 RewriteCond %{REQUEST_FILENAME} !-f
12 RewriteRule ^(.*)$ index.php [QSA,L]
13
Note: See TracBrowser for help on using the browser.