Let's say in my website I have user & admin .php
pages. the user page accommodates requests made by users, which may be 5000 pageviews a day, but my admin page gets only 100
page views (from me) per day.
Now, I was thinking being able to access my admin control panel from the index page, but I am not sure if my 100+ requests will interfere with the performance of the site and affect the user's experience.
I am thinking Apache does not care if 5500 users accessed the same index page, instead of allocating and distributing the requests based on the importance of the page.
I just don't know which one is the recommended method for micro-optimization.