jewelhuq's avatar

MailWizz Installation backend not opening

Hello,

I have just install mailwazz using laravel forge. But when i am trying to login into their backend it is not working. I am getting the following error : No input file specified.

https://aaa.test/latest/customer/index.php/guest/index

laravel forge install in this latest folder is under the public folder.

Could you please suggest that configration i need to change to make it work.

0 likes
1 reply
jewelhuq's avatar

I think I solved it. just by changing location as follow

location / {
    
        if (!-e $request_filename){
         rewrite ^(/)?api/.*$ /api/index.php;
     }
     if (!-e $request_filename){
         rewrite ^(/)?customer/.*$ /customer/index.php;
     }
     if (!-e $request_filename){
         rewrite ^(/)?backend/.*$ /backend/index.php;
     }
     if (!-e $request_filename){
         rewrite ^(.*)$ /index.php;
     }
     
    try_files $uri $uri/ /index.php?$query_string;
}

Please or to participate in this conversation.