• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Question AWSTATS 404 site not found

Danny325

Basic Pleskian
I handle all uris over my frontcontroller and php scripts like that it was necessary to add:

Code:
if (!-e $request_filename){
   rewrite ^(.*)$ /index.php break;
}

Now if i try to open the awstat ui, .../plesk-stat/webstat-ssl/ i get my custom 404 error page.

Is there any clever way handle only the affected uri with nginx ?

EDIT:
Meantime i added before something like:
Code:
if ($request_uri ~ "^\/plesk-stat\/$"){
    break;
}
Any better solution ?
 
Last edited:
Back
Top