A project sets up two websites in iis, one to access static resources and one to access dynamic requests

is a project for a school. The system is windows server 2012 R2. The running environment IIS8.0, sets up two websites on iis, using different ports. One website handles php requests and the other deals with static resources. Will it improve the response speed

Feb.16,2022

if all files are configured, they will be processed by the fastcgi program, so separation will improve performance.
if the configuration only accesses the .php file before it is thrown to the backend fastcgi program, then the performance remains the same, so there is no need to separate the two websites.

Menu