Answers for "laravel default website address"

PHP
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 ^ index.php [L]
RewriteRule ^(/)?$ public/index.php [L] 
</IfModule>
Posted by: Guest on January-01-2021
0

current URL without url site laravel

is work
{{Request::path()}}
or
request()->path()
Posted by: Guest on October-24-2020

Code answers related to "laravel default website address"

Browse Popular Code Answers by Language