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 -

ubuntu - How to disable Kernel Module Signing in linux -

SQL php on different pages to Insert (mysqli) -