//ได้แล้วครับผม ลองผิดลองถูก ตั้งนาน save ไฟล์ชื่อว่า web.config ไปไว้ wwwroot นะครับ <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="rule 1P" stopProcessing="true"> //ชื่อ folder 1 เว็บไซ 1 <match url="^folder1/(.*)$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="/folder1/index.php/{R:1}" /> </rule> <rule name="rule 2P" stopProcessing="true">//ชื่อ folder 2 เว็บไซ 2 <match url="^folder2/(.*)$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="/folder2/index.php/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
<configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions> <add input="{R:1}" pattern="^(index\.php|(.*)\.swf|index|assets|captcha|pdf|antispam|forums|images|css|download|jquery|js|robots\.txt|favicon\.ico|test-ci)" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="./index.php?{R:1}" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
$config['index_page'] = '';
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง