มีหลายเว็บไซต์อยู่ที่ Server เดียวกันโดยแบ่งโฟลเดอร์ และมีหลาย Subdomain ชี้มายัง folder ของแต่ละเว็บไซต์ จะชี้ DNS มายัง folder ของแต่ละเว็บไซต์ได้ยังไงบ้างคะ
น่าจะเป็นการสร้าง subdomain รึเปล่าครับ
ปกติเวลาเราสร้าง subdomain เราจะได้โฟลเดอร์แยกออกมาเลยครับ จะเข้าผ่าน /folder1
หรือจะเข้าผ่าน subdomain ก็ได้ เช่น folder1.mydomain.com
https://padveewebschool.com/learn-wordpress/subdomain/
Date :
2021-03-01 11:29:49
By :
{Cyberman}
ไม่เกี่ยวกับ DNS ครับ แค่ subfolder ล้วนๆ
Date :
2021-03-01 16:05:49
By :
Genesis™
ก็อยู่ที่ว่า subdomain หรือ sub path
Subdomant.yourdomain.com อันนี้ subdomain กำหนดได้ที่ ด้วย dns และต้องกำหนด การเข้าถีงที่ server ด้วย
iis กำหนดที่ binding
apache กำหนดที่ /etc/httpd/conf.d/mySubDomain.conf
Code (XML)
<VirtualHost *:443>
ServerName SubDomain.yourdomain.com
DocumentRoot /var/www/mysub
<Directory /var/www/mysub >
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile /etc/ssl/thaigamehub/SubDomain-certificate.crt
SSLCertificateKeyFile /etc/ssl/thaigamehub/SubDomain-private.key
SSLCertificateChainFile /etc/ssl/thaigamehub/SubDomain-ca_bundle.crt
ErrorLog /home/adminweb/log/SubDomain-error.log
CustomLog /home/adminweb/log/SubDomain-access.log combined
</VirtualHost>
ส่วน sub path yourdomain.com/MyPath กำหนดได้เอง ส่วนวิธีการ ก็อยู่ที่ว่า ใช้ apache หรือ iis
iis
apache
ในไฟล์ ้/etc/httpd/conf.d/myalias.conf
Alias /MySubpath /true/path/ondisk
บางคนอาจจะเรียก subdomain เหมือนกัน แต่ ผมเรียกให้ต่างกัน เพราะ เวลา request การ relatiion url จะต่างกัน
subdomain root url จะอยู่ที่ subdomain.domain.com/
ส่วน subpath root url จะอยู่ที่ domain.com/
ก็เลือกใช้เอากับงาน
Date :
2021-03-01 18:44:18
By :
Chaidhanan
ลืมถาม host ตัวเองหรือเปล่า มีสิทธิ์ เข้าถีงหรือเปล่า 55555
ปล. dns ต้องไปที่ ผู้ใช้บริการ ทึ่คุณจดทะเบียน ชื่อ domain
เขาจะมีเครื่องมือ ให้ ใส่ ชื่อ subdomain และชี้ไปที่ Ip
เข้าใจอยู่อย่างหนึ่ง subdomain จะทำงานเสมือน domain ต้องมีการกำหนด ที่ dns
เพราะ มันสามารถ ชี้ไป ip ที่ต่างกันได้
ประวัติการแก้ไข 2021-03-01 18:53:35
Date :
2021-03-01 18:49:14
By :
Chaidhanan
Load balance : Server 05