Category: Web Config

Magento

Default .htaccess File ############################################ ## uncomment these lines for CGI mode ## make sure to specify the correct cgi php binary file name ## it might be /cgi-bin/php-cgi # Action php5-cgi /cgi-bin/php5-cgi # AddHandler php5-cgi .php ############################################ ## GoDaddy specific options # Options -MultiViews ## you might also need to add this line to php.ini…
Read more

Spam Experts on IMH shared

domain.com. IN MX 10 mx1.inmotionhosting.com. domain.com. IN MX 20 mx2.inmotionhosting.com.

Skip a Rewrite Rule For .htaccess

RewriteRule ^\.well-known – [L,NC]

.htaccess Lockdown

A nice anti-malware .htaccess file I came accross ## Begin – Rewrite rules to block out some common exploits. # If you experience problems on your site block out the operations listed below # This attempts to block the most common type of exploit `attempts` to Joomla! # # Block out any script trying to…
Read more

DMARC Records

No reports None: v=DMARC1; p=none; sp=none; rf=afrf; pct=100; ri=86400 Reject: v=DMARC1; p=reject; sp=none; rf=afrf; pct=100; ri=86400 Quarantine: v=DMARC1; p=quarantine; sp=none; rf=afrf; pct=100; ri=86400 With reports None: v=DMARC1; p=none; sp=none; ruf=mailto:user@example.com; rf=afrf; pct=100; ri=86400 Reject: v=DMARC1; p=reject; sp=none; rf=afrf; pct=100; ruf=mailto:user@example.com; ri=86400 Quarantine: v=DMARC1; p=quarantine; sp=none; ruf=mailto:user@example.com; rf=afrf; pct=100;

WordPress Common Configs & Commands

.htaccess File Default WordPress .htaccess file # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Default WordPress .htaccess file with AutoSSL exclusions # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} !^/(\.well-known|\.well-known/.*)$ RewriteCond %{REQUEST_FILENAME} !-f…
Read more