1
mirror of https://github.com/jakejarvis/spoons.git synced 2025-04-26 13:28:27 -04:00

error page fix

This commit is contained in:
Jake Jarvis 2013-05-21 11:08:12 -04:00
parent 526cd19cb6
commit 23b7d4ac04
2 changed files with 17 additions and 17 deletions

View File

@ -1,20 +1,20 @@
Options -indexes
ErrorDocument 403 /404.html
ErrorDocument 404 /404.html
ErrorDocument 403 /error.html
ErrorDocument 404 /error.html
#AddType application/x-httpd-php5 .pdf
RewriteEngine on
RewriteRule ^login/?$ login.php
RewriteRule ^logout/?$ logout.php
RewriteRule ^sms/?$ sms.php
RewriteRule ^print.pdf print.php
RewriteRule ^shuffle/?$ index.php?shuffle
RewriteRule ^shuffle/confirmed/?$ index.php?shuffle&confirmed
RewriteRule ^shuffle/done/?$ index.php?shuffle&done
RewriteRule ^clear/?$ index.php?clear
RewriteRule ^clear/confirmed/?$ index.php?clear&confirmed
RewriteRule ^clear/done/?$ index.php?clear&done
RewriteRule ^add/?$ add.php
RewriteRule ^spoon/([^/.]+)/?$ index.php?spoon=$1
RewriteRule ^revive/([^/.]+)/?$ index.php?revive=$1
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]

File diff suppressed because one or more lines are too long