lundi 22 mars 2021

laravel 8 getting 404 file not found error on hosting project on Godaddy

The project directory like domain-name/demos/project-folder

domain-name/demos/project-folder/.htaccess is

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

domain-name/demos/project-folder/public/.htaccess and index is

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Send Requests To Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

And the index.php is

define('LARAVEL_START', microtime(true));  

require __DIR__.'/../vendor/autoload.php';
    
$app = require_once __DIR__.'/../bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = tap($kernel->handle(
    $request = Request::capture()
))->send();

$kernel->terminate($request, $response);


from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/3lFJV1Z
via IFTTT

Aucun commentaire:

Enregistrer un commentaire