Files
CyberPanel/websiteFunctions/tests.py

8 lines
185 B
Python
Raw Normal View History

2022-06-12 12:05:51 +05:00
a = "/home/newweb2.com/public_html/newweb2/"
DomainName ="newweb3.com"
abc = a.split("/")
wpexpath = abc[4]
newpath = '/home/%s/public_html/%s' % (DomainName, wpexpath)
2019-11-19 18:43:52 +05:00
2022-06-12 12:05:51 +05:00
print(newpath)