สร้างโดเมนย่อยแบบไดนามิกโดยใช้ PHP และ Htaccess
(1) รูท. htaccess
ไฟล์นี้ถูกเปลี่ยนเส้นทางhttp://www.yourwebsite.comไปยังhttp://yourwebsite.comสำหรับการใช้หน้าแรก การเปลี่ยนเส้นทางโดเมนย่อยทั้งหมดไปยัง yourwebsite_folder
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.yourwebsite.com
RewriteRule (.*) http://yourwebsite.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^yourwebsite\.com $
RewriteCond %{REQUEST_URI} !^/yourwebsite_folder/
RewriteRule (.*) /yourwebsite_folder/$1
RewriteCond %{HTTP_HOST} ^(^.*)\.yourwebsite.com
RewriteCond %{REQUEST_URI} !^/yourwebsite_folder/
RewriteRule (.*) /yourwebsite_folder/$1
(2) ภายในโฟลเดอร์. htaccess
ไฟล์นี้กำลังเขียน URL ย่อย
http://yourwebsite.com/index.php?siteName=9lessons
ไปที่
http://9lessons.yourwebsite.com
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^([aA-zZ])$ index.php?siteName=$1
RewriteCond %{HTTP_HOST} ^(^.*)\.yourwebsite.com
RewriteRule (.*) index.php?siteName=%1
เคล็ดลับ. htaccess เพิ่มเติม: บทแนะนำและเคล็ดลับไฟล์ Htaccess
index.php
ไฟล์นี้มีรหัส PHP อย่างง่ายโดยใช้การแสดงออกปกติตรวจสอบค่าโดเมนย่อย
<?php
$siteName='';
if($_GET['siteName'] )
{
$sitePostName=$_GET['siteName'];
$siteNameCheck = preg_match('~^[A-Za-z0-9_]{3,20}$~i', $sitePostName);
if($siteNameCheck)
{
//Do something. Eg: Connect database and validate the siteName.
}
else
{
header("Location: http://yourwebsite.com/404.php");
}
}
?>
//HTML Code
<!DOCTYPE html>
<html>
<head>
<title>Project Title</title>
</head>
<body>
<?php if($siteNameCheck) { ?>
//Home Page
<?php } else { ?>
//Redirect to Subdomain Page.
<?php } ?>
</body>
</html>
ไม่มีโฟลเดอร์ย่อย
หากคุณใช้ไดเรกทอรีราก (htdocs / public_html) เป็นไดเรกทอรีโครงการให้ใช้ไฟล์. htaccess ต่อไปนี้
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.yourwebsite.com
RewriteRule (.*) http://yourwebsite.com/$1 [R=301,L]
RewriteRule ^([aA-zZ])$ index.php?siteName=$1
RewriteCond %{HTTP_HOST} ^(^.*)\.yourwebsite.com
RewriteRule (.*) index.php?siteName=%1