I would like to rewrite Url in Apache/Nginx. Normally, I get this url in Laravel application
(1): https://test.local/companyName/computers
(2): https://test.local/companyName/computers?status=1&action=update
(1) is url to get result without extra conditions (2) is url with query string (extra conditions)
I expect this url which display index.php if have query string
https://test.local/companyName/computers/index.php?status=1&action=update
Please give some suggestion! Many thanks!