pubg/.htaccess
Thijs Stobbelaar e5a138157b d
2023-09-26 19:40:00 +02:00

8 lines
No EOL
260 B
ApacheConf

RewriteEngine On
# Check if not an existing directory
RewriteCond %{REQUEST_FILENAME} !-d
# Check if appending .php points to an existing file
RewriteCond %{REQUEST_FILENAME}\.php -f
# Rewrite the neat URL to its .php counterpart
RewriteRule ^(.*)$ $1.php [L]