Consolidated ASP Classic MVC framework from best components
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
548B

  1. <!--#include file="..\core\autoload_core.asp" -->
  2. <%
  3. ' Define starter application routes
  4. router.AddRoute "GET", "/home", "HomeController", "Index"
  5. router.AddRoute "GET", "/", "HomeController", "Index"
  6. router.AddRoute "GET", "", "HomeController", "Index"
  7. router.AddRoute "GET", "/404", "ErrorController", "NotFound"
  8. ' Dispatch the request (resolves route and executes controller action)
  9. MVC.DispatchRequest Request.ServerVariables("REQUEST_METHOD"), _
  10. TrimQueryParams(Request.ServerVariables("HTTP_X_ORIGINAL_URL"))
  11. %>

Powered by TurnKey Linux.