From 9f2490fd174351e4bca174b39c2fa034767fe69f Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Sat, 22 Oct 2016 19:13:54 +1300 Subject: [PATCH] Ignoring public_html with no slashes seems to work --- .gitignore | 2 +- .htaccess | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100755 .htaccess diff --git a/.gitignore b/.gitignore index 92e9c288..1416ba73 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ /node_modules/ /production/ -/public_html/ +public_html /.sass-cache/ *.orig Thumbs.db diff --git a/.htaccess b/.htaccess deleted file mode 100755 index ccaa4ef3..00000000 --- a/.htaccess +++ /dev/null @@ -1,4 +0,0 @@ -RewriteEngine On - -RewriteCond %{REQUEST_URI} !/production/ [NC] -RewriteRule (.*) /production/$1 [NC,L]