Primeiro: Obrigatório Se é mal
Em segundo lugar, você deve separar seu subdomínio e domínio para diferentes blocos de servidores (e / ou arquivos diferentes). Em seguida, crie regras de reescrita
server {
server_name oursubdomain.domain.com www.oursubdomain.domain.com;
location / {
rewrite ^/notes.php$ $scheme://domain.com/dashboard permanent;
rewrite ^/contact-us.php$ $scheme://domain.com/contact-us/new permanent;
rewrite ^/help.php$ $scheme://domain.com/faq permanent;
}
}
server {
server_name domain.com www.domain.com;
location = /dashboard {
# Do something here, possibly send to php
}
location = /faq {
# Do something here, possibly send to php
}
location = /contact-us/new {
# Do something here, possibly send to php
}
}
Espero que ajude você no seu caminho!