Replace www in URL with wildcard subdomain
P粉336536706
P粉336536706 2024-04-04 19:28:30
0
1
418

Is there any way to

www.domain.com/new-mexico/albuquerque/businessname-513526.html

is replaced with:

businessname.domain.com/new-mexico/albuquerque/businessname-513526.html

This means "www" will be replaced by the business name. This should be simple but I don't know how to implement it.

P粉336536706
P粉336536706

reply all(1)
P粉713846879

Sounds like you may need to use str_replace

$old_domain = "www.domain.com/new-mexico/albuquerque/businessname-513526.html";
$new_domain = str_replace("www.", "businessname.", $old_domain); //我选择在www之前加上点号,以防URL中还有另一个www
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!