The rss.xml file is in the public folder.
Can I open it through the URL?
Route::get('/rss', function () { return redirect('/public/Rss.xml'); }); and
Route::get('/rss', function () { return redirect('/../public/Rss.xml'); }); don't pass
Source: https://ru.stackoverflow.com/questions/765615/
All Articles