How to create a route that ends with .html in Slim Framework PHP
one text
Solution:
Firstly to achieve this you will need to disable your web server (apache, nginx or other) from serving static html pages for your project. Typically a url that ends with .html will cause web servers to check for the corresponding static html file.
Then you need to add rewrite logic in .htaccess
file to make sure all *.html
routes are passed to your frameworks route handler like index.php
or server.php
(I am not familiar with Slim). Then its a matter of how you have configured your framework to handle there routes.