use frappe.Redirect instead of DoesNotExistError
diff --git a/erpnext/www/book-appointment/index.py b/erpnext/www/book-appointment/index.py
index 366f399..9765e5e 100644
--- a/erpnext/www/book-appointment/index.py
+++ b/erpnext/www/book-appointment/index.py
@@ -14,7 +14,8 @@
 	if is_enabled:
 		return context
 	else:
-		raise frappe.DoesNotExistError
+		frappe.local.flags.redirect_location = '/404'
+		raise frappe.Redirect
 
 @frappe.whitelist(allow_guest=True)
 def get_appointment_settings():