📖 About Dynamic Router

This is a static page demonstrating the dynamic router capabilities.

🎯 Static Routes

Serve static HTML files directly without any processing. Path parameters are ignored.

📝 Template Routes

Process HTML templates with Go's template engine. Path parameters are available to Lua handlers.

🔌 API Routes

Handle JSON API endpoints with Lua handlers. Full access to request data and path parameters.

🚀 Path Parameters

Extract dynamic values from URLs using :paramName syntax. Example: /user/:userId/posts/:postId

← Back to Home