Recent content by pyrosember

  1. P

    Continue working on htaccess...

    Solved, adding x-xxs-protection for old browsers mitigate unsafe-inline.
  2. P

    Accordion FAQ or regular FAQ?

    Well, it's something curiously enough, but a trick I usually do with this, Is check w3c recommendations. It seems to be a good way to ensure SEO Google experience...
  3. P

    Anyone getting their sites hit with this weird spam?

    Check your htaccess, you can add more security for those spam injections...
  4. P

    Continue working on htaccess...

    Hi!! I have got a huge problem with CSP values in WordPress, the browser is showing policy errors with scripts and CSS, it's because a lot of core js scripts are done inline One of the solutions is adding unsafe-inline, but it seems to be a hack hole to xxs attacks. Other solution is add a hash...
  5. P

    .htaccess creation

    oh... i almost forgot... # errores not-found ErrorDocument 400 domain/errors/bad-request.php ErrorDocument 401 domain/errors/bad-request.php ErrorDocument 403 domain/errors/denied-access.php ErrorDocument 404 domain/errors/not-found.php ErrorDocument 405 domain/errors/denied-access.php...
  6. P

    .htaccess creation

    hotlinking update for exceptions <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} \.(gif|jpe?g?|png|webp)$ [NC] RewriteCond %{HTTP_REFERER} !^https?://([^.]+\.)?dominio\. [NC]...
  7. P

    .htaccess creation

    mostly htaccess is from https://gist.github.com/seoagentur-hamburg/c96bc796764baaa64d43b70731013f8a
  8. P

    .htaccess creation

    buff, it was difficult... http://pastie.org/p/2YU96iiQ79ZERAPfG78qWb
  9. P

    .htaccess creation

    Here is the htaccess, i can't publish as code... I guess that it's because the character limits...
  10. P

    .htaccess creation

    Hi, i'm trying to create a powerfull .htaccess to improve security and speed, although server needs to run some modules in php. I will share you my final htaccess to recieve advice from people who have more knowlegde about it than me.
Back
Top