|
|
|
สอบถามการทำ mod_rewrite ใน iis พอดีผมใช้ codeigniter อยากตัด index.php ออก |
|
|
|
|
|
|
|
Online .htaccess to Web.Config converter ผมเห็นมีเว็บสำหรับ Convert อยู่น่ะครับ บางคำสั่งอาจจะต้องแก้แบบ Manual
|
|
|
|
|
Date :
2016-01-06 13:36:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
//ได้แล้วครับผม ลองผิดลองถูก ตั้งนาน 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>
|
|
|
|
|
Date :
2016-01-06 14:46:56 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-01-06 16:51:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|