7 lines
197 B
ApacheConf
7 lines
197 B
ApacheConf
|
# /etc/httpd/conf/httpd.conf -> AllowOverride All -> service httpd restart
|
||
|
|
||
|
RewriteEngine on
|
||
|
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteCond %{REQUEST_FILENAME}\.php -f
|
||
|
RewriteRule ^(.*)$ $1.php
|