Skip to content

Commit

Permalink
Merge pull request #10 from BristolJim/patch-1
Browse files Browse the repository at this point in the history
Fix RewriteRule in .htaccess
  • Loading branch information
cephalin committed Apr 6, 2020
2 parents ea2c3ac + f04f6d0 commit dae345e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<IfModule mod_rewrite.c>
RewriteEngine on

RewriteRule ^.*$ /public/$1 [NC,L,QSA]
</IfModule>
RewriteRule ^(.*)$ /public/$1 [NC,L,QSA]
</IfModule>

0 comments on commit dae345e

Please sign in to comment.