Postingan lainnya
Menghilangkan index.php pada url web native
Teman-teman mohon bantuannya untuk menghilangkan index.php pada URL terlampir bagaimana ya cara nya: http://localhost/rhcikarang/index.php?page=data_herbal
Mohon bantuan sharing nya.
0
2 Jawaban:
gini, tarok di .htaccess
<pre> RewriteEngine on RewriteRule ^([^/d]+)/?$ index.php?page=$1 [QSA] </pre>
jadi tinggal akses http://localhost/rhcikarang/data_herbal
1
<pre> <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+)$ index.php/$1 [L] </IfModule> </pre>
buat file .htaccess di folder root atau index
1