mirror of
https://github.com/jakejarvis/spoons.git
synced 2025-04-26 13:28:27 -04:00
20 lines
924 B
ApacheConf
20 lines
924 B
ApacheConf
Options -indexes
|
|
|
|
ErrorDocument 403 /error.html
|
|
ErrorDocument 404 /error.html
|
|
#AddType application/x-httpd-php5 .pdf
|
|
|
|
RewriteEngine on
|
|
RewriteRule ^login/?$ login.php [L]
|
|
RewriteRule ^logout/?$ logout.php [L]
|
|
RewriteRule ^sms/?$ sms.php [L]
|
|
RewriteRule ^print.pdf print.php [L]
|
|
RewriteRule ^shuffle/?$ index.php?shuffle [L]
|
|
RewriteRule ^shuffle/confirmed/?$ index.php?shuffle&confirmed [L]
|
|
RewriteRule ^shuffle/done/?$ index.php?shuffle&done [L]
|
|
RewriteRule ^clear/?$ index.php?clear [L]
|
|
RewriteRule ^clear/confirmed/?$ index.php?clear&confirmed [L]
|
|
RewriteRule ^clear/done/?$ index.php?clear&done [L]
|
|
RewriteRule ^add/?$ add.php [L]
|
|
RewriteRule ^spoon/([^/.]+)/?$ index.php?spoon=$1 [L]
|
|
RewriteRule ^revive/([^/.]+)/?$ index.php?revive=$1 [L] |