All Questions
Tagged with laravel-herd url-rewriting
1 question
0
votes
0
answers
260
views
Laravel Herd all URLs rewritten to index.php but a rewrite to another file neeed
Laravel Herd by default tries to rewrite all URLs to point to the index.php file.
If I have a rule like rewrite ^/test/([0-9]+)$ /index.php?id=$1; it works, but rewrite ^/test/([0-9]+)$ /test.php?id=$...