files responce from one server to other domains
Greeting all,
this is my first post here,,
Actually i have a complete website like(www.example.com) with admin interface, and i want to share same website to different domains like(www.example2.com, www.example3.com, www.example4.com),
with this example2.com, example3.com, example4.com can change his contents from example.com 开发者_JAVA百科to using the admin interface,,
i m beginner so i don't have any idea ,,
i m waiting for response pls let me know if you understand my question??
You need to add the ServerAlias directive on your apache configuration file:
<VirtualHost *> ServerName example.com ServerAlias example2.com example3.com example4.com example5.com # ... </VirtualHost>
精彩评论