Я предполагаю, что вы знаете, что такое файл .htaccess.
Вы можете достичь этого двумя способами:
Метод 1:
`#1- Loads the page asdf.php but
displays asdf in the address bar
RewriteBase /site
RewriteRule ^([^/\.]+)?$ $1.php `
Метод 2:
`#2- Loads the page asdf.php and
displays asdf.php in the address bar.
The R flag tells Apache to redirect to the
url.
RewriteBase /site
RewriteRule ^([^/\.]+)?$ $1.php [R]`
Надеюсь, это поможет вам.