Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. location / {
  2. /*your rules here*/
  3. }
  4.  
  5. location /mypath {
  6. rewrite ^/mypath$ /real/path/to/file/thisfile.html;
  7. }
  8.  
  9. location = /mypath {
  10. try_files /myotherpath/thisfile.html =404;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement