• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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