What would be the easiest way to add .html and have it work both ways?
example.com/about -> works!
example.com/about.html -> works!
I can add ".html" to the route, but then it doesn't work without.
Route::get('about.html', function () {
return 'About page';
});