Skip to content

Commit

Permalink
[BF] Route::redirect() does not use the base URL apparently
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Jan 9, 2019
1 parent c03976f commit 3731a1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@


// IXP Manager <v4.9 aliases for static links
Route::redirect( '/auth/logout', '/logout', 301 );
Route::redirect( '/auth/login', '/login', 301 );
Route::redirect( '/auth/lost-password', '/password/forget', 301 );
Route::redirect( '/auth/lost-username', '/username', 301 );
Route::redirect( 'auth/logout', url( '' ) . '/logout', 301 );
Route::redirect( 'auth/login', url( '' ) . '/login', 301 );
Route::redirect( 'auth/lost-password', url( '' ) . '/password/forget', 301 );
Route::redirect( 'auth/lost-username', url( '' ) . '/username', 301 );
});


Expand Down

0 comments on commit 3731a1e

Please sign in to comment.