• 0 Posts
  • 8 Comments
Joined 1 year ago
cake
Cake day: June 24th, 2023

help-circle

  • Why are you using that?

        location ~ /\.ht {
            deny all;
        }
    

    You’re denying the access to your root, which is the public/ folder and has the file .htaccess that has

    <IfModule mod_rewrite.c>
        <IfModule mod_negotiation.c>
            Options -MultiViews -Indexes
        </IfModule>
    
        RewriteEngine On
    
        # Handle Authorization Header
        RewriteCond %{HTTP:Authorization} .
        RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    
        # Redirect Trailing Slashes If Not A Folder...
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_URI} (.+)/$
        RewriteRule ^ %1 [L,R=301]
    
        # Send Requests To Front Controller...
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^ index.php [L]
    </IfModule>
    

    This file handles the income requests and send to the front controller.






  • Not only that, but also people are stupid.

    Bird flu is contaminating mammals like cows and pigs, it’s a small jump to infect humans (btw, it already contaminated rural employees). A simple pasteurization procedure (heat up to 70°C and then cool down faster) is enough to kill the virus, but there is a trend in US to drink raw milk just because they’re saying that pasteurization is a form of government control and brain washing.

    The only issue is that these arrombados (I’ll keep this word in my language) that are doing this shit will probably get infected, spread a totally avoidable disease and probably infect someone who’s trying to take all the precautions needed.