“Vermögenswert funktioniert nicht in Laravel” Code-Antworten

Vermögenswert funktioniert nicht in Laravel

Add this in your .htaccess file

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

    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} -d [OR]
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^ ^$1 [N]

    RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
    RewriteRule ^(.*)$ public/$1 

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php
</IfModule>
nk jangid

Vermögensfunktion in Laravel funktioniert nicht

php artisan cache:clear
php artisan route:cache
php artisan config:cache
php artisan view:clear
Thoughtful Toucan

Vermögensfunktion in Laravel funktioniert nicht

if (! function_exists('asset')) {
    /**
     * Generate an asset path for the application.
     *
     * @param  string  $path
     * @param  bool    $secure
     * @return string
     */
    function asset($path, $secure = null)
    {
        return app('url')->asset("public/".$path, $secure);
    }
}
Thoughtful Toucan

Ähnliche Antworten wie “Vermögenswert funktioniert nicht in Laravel”

Fragen ähnlich wie “Vermögenswert funktioniert nicht in Laravel”

Weitere verwandte Antworten zu “Vermögenswert funktioniert nicht in Laravel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen