PHP code example of ilvalerione / laravel-https-redirect

1. Go to this page and download the library: Download ilvalerione/laravel-https-redirect library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ilvalerione / laravel-https-redirect example snippets


return [
    'environments' => [
        // 'local', <-- usually no
        'development',
        'test',
        'production',
    ]
]

return [
    'environments' => '*'
]

class Kernel extends HttpKernel
{
    /**
     * The application's global HTTP middleware stack.
     *
     * These middleware are run during every request to your application.
     *
     * @var array
     */
    protected $middleware = [
        ...,
        
        \Aventure\HttpsRedirect\Middleware\HttpsCheck::class,
    ];
    
    ...

class Kernel extends HttpKernel
{
    /**
     * The application's global HTTP middleware stack.
     *
     * These middleware are run during every request to your application.
     *
     * @var array
     */
    protected $routeMiddleware  = [
        ...,
        
        'https_redirect' => \Aventure\HttpsRedirect\Middleware\HttpsCheck::class,
    ];
    
    ...

Route::middleware('https_redirect')->group(function(){

    Route::view('example', 'example');
    
});
 php artisan vendor:publish --provider="Aventure\HttpsRedirect\HttpsRedirectServiceProvider"