Browse Source

Merge branch 'master' into develop

Taylor Otwell 11 years ago
parent
commit
129d06dffd
2 changed files with 6 additions and 5 deletions
  1. 1 1
      app/views/hello.php
  2. 5 4
      public/.htaccess

+ 1 - 1
app/views/hello.php

@@ -4,7 +4,7 @@
     <meta charset="UTF-8">
     <title>Laravel PHP Framework</title>
     <style>
-        @import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
+        @import url(//fonts.googleapis.com/css?family=Lato:300,400,700);
 
         body {
             margin:0;

+ 5 - 4
public/.htaccess

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