开发者

files responce from one server to other domains

开发者 https://www.devze.com 2023-01-17 15:40 出处:网络
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,

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>

0

精彩评论

暂无评论...
验证码 换一张
取 消