Url User Friendly, hide original address with variables
- by user1075086
this is my simple htaccess that redirect all calls to index.php or to error.php
It work fine but I would hide the original address from the address bar.
#Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI}…