This is a bit of an odd situation but I have a nav link on my laravel site that I changed to go directly to an aws bucket file
<li><a href="www.awslink/thisLink.com">Images</a></li>
However, the old site had this nav direct to files in the local site storage (site->public->images->assets) at www.mysite.com/images
Is there a way so that if someone has a bookmark or hardcodes the link www.mysite.com/images it will direct to that aws link? Or can I set a route to go straight to it in that instance?
I set a route with a redirect for Get::'Images'
to the link but the issues is I have the folder of the same name in my public folder. Can I ignore that folder?
new route:
Route::get('Images', function(){
return redirect('https://aws.images');
});