right now i m using xampp. except this url all the url are working fine on local server. the route of mine is about 1000 line so you can imagine how many url are there all are working fine except this url.
In the above case
localhost/site/quiz it redirect me to localhost/quiz
but
localhost/site/quiz/stepone working fine
Please run your site on port in local .
Go to your laravel directory than type below command.
"php artisan serve"
It's echo url like http://localhost:8000
Than check your route issue. May be it solved.
You can run the below command and verify if correct route is being created.
php artisan route:list
And also check no duplicate route has been created and you don't have any redirect call for the route localhost/quiz in method for route localhost/site/quiz