regex - Regular Expressions: Get subdomain and domain -


in nginx, have line states ~^(www\.)(?<sub>.+).(?<domain>.+)$.

how make can subdomain , domain separate? subdomain.example.com.

edit: tried ~^(www\.)?(?<sub>)\.?(?<domain>.+)$ , didn't work either.

you have escape .

~^(www\.)?(?<sub>.+?)\.(?<domain>.+)$ 

Comments

Popular posts from this blog

java - Ebean enhancement ignores a model -

javascript - Reference error while trying to encapsulate an animation function -

SQL php on different pages to Insert (mysqli) -