Hello,
I need to hide the .php extensions of my pages.
I found some code that should work on apache, now I need help to get it working on nginx
RewriteEngine on
RewriteRule ^home$ home.php
I've tried with:
rewrite ^home$ home.php last;
but with no success.
Any idea?