we have a set up where main site (wordpress) is running on the server, all additional mini sites that should appear within the main one, but not served by wordpress are configured as Alias'es:
Alias "/toolbox/some-application-directory" "/var/www/some-application-directory/current/public"
<Directory /var/www/some-application-directory/current/public>
AllowOverride All
Options FollowSymLinks Multiviews
Order allow,deny
Allow from all
Require all granted
</Directory>
This setup works (or worked) well for all applications, but the last one i have added started to behave weirdly, apache would randomly not resolve the that specific alias and display the main application (wordpress) 404. This happens randomly on requests. Restarting apache seems to temporarily fix the issue. but is strats happening again after few requests. Nothing in the log. Applications as PHP served via apache (not fpm). Any advice on where to start looking would be greatly appreciated.