windhamdavid 11 years ago
parent
commit
b036418357
3 changed files with 11 additions and 2 deletions
  1. 1 2
      .gitignore
  2. 3 0
      .gitmodules
  3. 7 0
      .htaccess

+ 1 - 2
.gitignore

@@ -1,4 +1,3 @@
-.htaccess
 wp-content/uploads/
 wp-content/blogs.dir/
 
@@ -36,4 +35,4 @@ tmtags
 .Spotlight-V100
 .Trashes
 ehthumbs.db
-Thumbs.db
+Thumbs.db

+ 3 - 0
.gitmodules

@@ -0,0 +1,3 @@
+[submodule "wp"]
+        path = wp
+        url = git://github.com/WordPress/WordPress.git

+ 7 - 0
.htaccess

@@ -0,0 +1,7 @@
+<IfModule mod_rewrite.c>
+RewriteEngine On
+RewriteBase /
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule . /index.php [L]
+</IfModule>