Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80 default_server;
- root /app/app;
- index index.php index.html index.htm;
- server_name localhost;
- location ~ "^/(.+)$" {
- try_files $uri $uri/ /index.php?page=$1;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement