From 81b06df1f78d3b1e2dd92913e21a32f8384ff82c Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 9 Sep 2014 09:12:34 -0400 Subject: [PATCH] Think this is from wordfence .htaccess file to prevent unauthorized files being accessed. --- .htaccess | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..7079168 --- /dev/null +++ b/.htaccess @@ -0,0 +1,12 @@ + +# BEGIN WordPress + +RewriteEngine On +RewriteBase /www.petoskeyrobotics.org/ +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /www.petoskeyrobotics.org/index.php [L] + + +# END WordPress -- 2.17.1