menghilangkan extension php

php


buat file dengan nama   .htaccess

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php
</IfModule>

“RewriteCond %{REQUEST_FILENAME}.php -f”
kode ini berfungsi untuk mencari file .php
“RewriteRule ^(.*)$ $1.php”
kode ini berfungsi untuk menghapus file dengan ekstensi .php

0 Response to "menghilangkan extension php"

Post a Comment