7 lines
139 B
ApacheConf
7 lines
139 B
ApacheConf
|
RewriteEngine On
|
||
|
RewriteBase /
|
||
|
|
||
|
# Remove .php extension from URLs
|
||
|
RewriteCond %{REQUEST_FILENAME}.php -f
|
||
|
RewriteRule ^(.*)$ $1.php [L,QSA]
|