laravel-5.2のルーティングで少し混乱します。私は1つの問題に直面している。私は二つのルートを持っていることは、次のとおりです。 -laravelでのルーティング
Route::get('{businessname}',[email protected]) //first Route
Route::get('{username}','[email protected]') //second route
のでヨーヨー{businessname}
と{username}
が動的であることがわかります。 しかし、ときに私はのようなURLにアクセスしよう: -
Localhost:8000/dummy-business-name // this route is going to this function that is right .... -> [email protected]
しかし、私は、ユーザー名の第2の経路をしようとすると、それはまた、私は私達ができるこの事の代替を知っgetBusiness機能に
Localhost:8000/kanu-mahajan i want this function should be redirect to [email protected]
を行っていますそのようなルートを定義してください
Route::get('user/{username}','[email protected]')
しかし、私はこのようにしたくありません。上記のルーティング方法をlaravel 5.2で手伝ってください。
両方のルートは、それがユーザ名またはビジネスである1知っているか、動的なワイルドカードを使用していますか? – CUGreen
これはどうやって私はこれを行うことができますか? –