There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

BaalInvoker ,

Why are you using that?


<span style="color:#323232;">    location ~ /.ht {
</span><span style="color:#323232;">        deny all;
</span><span style="color:#323232;">    }
</span>

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


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

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

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines