Genaga
New Member
- Mar 12, 2015
- 29
- 8
Sup guys,
I'm getting ready to release me website but I have been using the live site for development so naturally I'm moving to my local machine (I know it should be like this initially).
Now I didn't set up my server or laravel or anything.
I have managed to install laravel with composer and run it on localhost, but when I copy all my files I get a infinite redirect loop.
This is my .htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Not sure what other information you may need just let me know!
Cheers in advance guys.
I'm getting ready to release me website but I have been using the live site for development so naturally I'm moving to my local machine (I know it should be like this initially).
Now I didn't set up my server or laravel or anything.
I have managed to install laravel with composer and run it on localhost, but when I copy all my files I get a infinite redirect loop.
This is my .htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Not sure what other information you may need just let me know!
Cheers in advance guys.