Answers for "how to change redirect url in laravel public"

PHP
1

laravel redirect external url

return redirect()->away('https://www.google.com');
Posted by: Guest on January-27-2021
0

laravel project htaccess redirect to public path

//In your Root directory create a file .htaccess and write it

RewriteEngine on
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
Posted by: Guest on May-08-2021

Code answers related to "how to change redirect url in laravel public"

Browse Popular Code Answers by Language