remove or hide address url nginx

0

I want to remove or hide a direction link

stay that way link

Try rewrite, but I think I'm not using it well.

    
asked by luis angel 27.03.2018 в 19:47
source

1 answer

0

Redirect the url with a 301 "permanent" link to link

rewrite ^themes/last/pages/(.*)$ $1 permanent;

Now that you have redirected to link we upload the value you should have with themes / last / pages / messages /index.php

rewrite ^(.*)$ themes/last/pages/$1 last;
    
answered by 28.03.2018 в 12:19