Feature Inquiry for Multiple URL Linking #1206
Replies: 1 comment 1 reply
-
Hey! This is nothing that Herd handles on its own. Your application should accept those individual request parameters. For example, when using a framework like Laravel, you would need to define a route that looks like this: Route::get('/{country}', function ($country) {
echo "You are requesting: ".$country;
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Folks,
I would like to inquire if there is a feature that allows linking a site with multiple URLs, such as the following, where I can incorporate different country names in my application:
http://country.test/vietnam
http://country.test/thailand
Could you kindly let me know if this is possible or if there's a specific approach for achieving this?
Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions