Think this is from wordfence
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 9 Sep 2014 13:12:34 +0000 (09:12 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 9 Sep 2014 13:12:34 +0000 (09:12 -0400)
.htaccess file to prevent unauthorized files being accessed.

.htaccess [new file with mode: 0644]

diff --git a/.htaccess b/.htaccess
new file mode 100644 (file)
index 0000000..7079168
--- /dev/null
+++ b/.htaccess
@@ -0,0 +1,12 @@
+
+# BEGIN WordPress
+<IfModule mod_rewrite.c>
+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]
+</IfModule>
+
+# END WordPress