Listen 8081 <VirtualHost localhost:8081> DocumentRoot D:/xampp/htdocs/modrewrite </VirtualHost>
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)/(.*)/ /index.php?lang=$1&page=$2 </IfModule>
$strLang = $_GET["lang"]; // ภาษา $strPage = $_GET["page"]; // หน้า
<?php $strTitle = "Welcome to My Web Site"; $strHome = "Home"; $strService = "Service"; $strAbout = "About Us"; $strContact = "Contact Us"; //** สมมุติค่ามาจาก Database ที่ได้จากการ Query ***// $result["DETAIL_EN"] = "This is content English"; $strDetail = $result["DETAIL_EN"]; ?>
<?php $strTitle = "ยินดีต้อนรับเข้าสู่เว็บไซต์ของฉัน"; $strHome = "หน้าแรก"; $strService = "บริการของเรา"; $strAbout = "เกี่ยวกับเรา"; $strContact = "ติดต่อเรา"; //** สมมุติค่ามาจาก Database ที่ได้จากการ Query ***// $result["DETAIL_TH"] = "นี้คือเนื้อหาภาษาไทย"; $strDetail = $result["DETAIL_TH"]; ?>
<?php session_start(); $strLang = $_GET["lang"]; $strPage = $_GET["page"]; $lang = ""; if($strLang == "th") { $lang = "th.php"; } else if($strLang == "en") { $lang = "en.php"; } else { $lang = "th.php"; } include($lang); ?> <html> <head> <title><?php echo $strTitle;?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> Language = <?php echo $strLang;?><br> Page = <?php echo $strPage;?><br> <table width="452" border="1" cellpadding="1" cellspacing="1"> <tr> <td><?php echo $strHome;?></td> <td><?php echo $strService;?></td> <td><?php echo $strAbout;?></td> <td><?php echo $strContact;?></td> </tr> </table> <br> <br> <?php echo $strDetail;?> <br> <br> <br> <strong>Language</strong><br> <a href="/th/<?php echo $strPage;?>/">TH</a> , <a href="/en/<?php echo $strPage;?>/">EN</a> </body> </html>