Skip to content

Commit

Permalink
Added htaccess files back. Build pack now supports them.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Mikusa committed Feb 7, 2015
1 parent a47a6f7 commit 6b5f03c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .bp-config/httpd/extra/httpd-php.conf

This file was deleted.

5 changes: 5 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
6 changes: 6 additions & 0 deletions public/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]
</IfModule>

0 comments on commit 6b5f03c

Please sign in to comment.