Configurar urls y htaccess para proyectos web de Laravel code example
Example 1: laravel .htaccess settings
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/public/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /public/$1
RewriteRule ^(/)?$ public/index.php [L]
</IfModule>
Example 2: url() inside laravel config files
Configs are loaded really early and probably not meant to use anything from the framework except Dotenv
return [
'photos_url' => URL::asset('xxx'),
];
Instead you can use:
return [
'photos_url' => env('APP_URL').'/rest_of_path.ext',
];