Merge pull request #1877 from briankiewel/htaccess-tabs

Converted spaces to tabs in .htaccess for consistency
This commit is contained in:
Taylor Otwell 2013-05-01 09:43:19 -07:00
commit d8abb9d603
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
<IfModule mod_rewrite.c> <IfModule mod_rewrite.c>
Options -MultiViews Options -MultiViews
RewriteEngine On RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L] RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L] RewriteRule ^ index.php [L]
</IfModule> </IfModule>