rewrite rule with .htaccess to mask url

800 Views Asked by At

My present url structure :

domain.com/items/view/5
domain.com/user/view/5
domain.com/user/edit/5

Now i don't want users to directly know the 'id' in the url, as they can directly fire a query from the address bar.
Hence i want to mask the url to :

domain.com

i.e. domain.com/anything will come as it is but the url will not change.

Thanks in advance.

Also note that i have already made .htaccess file with following code to remove 'index.php' from the url and that is working perfect.

    <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule ^(.*)$ /index.php/$1 [L]
    </IfModule>
1

There are 1 best solutions below

2
On

Can't be done. The only way to hide the id is to pass it outside the url - i.e. as POST data; but .htaccess doesn't have access to that, only the url.

Your code should instead handle the fact that users could enter the url directly and either act correctly or use a http-redirect header to send the user back to the main page.