将所有请求重定向到IIS 7中的网页

时间:2014-01-27 09:15:00

标签: php iis iis-7 url-rewriting web-config

我需要将所有请求重定向到另一个php文件 例如:

http://www.example.com/images/profile_images/thumb/mypic.jpg
to 
http://www.example.com/index.php/image/profile_images/mypic.jpg/thumb

1 个答案:

答案 0 :(得分:0)

在文件夹web.config中创建一个新的thumb,其中包含以下行。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>


    <system.webServer>
    <rewrite>
        <rules>
            <rule name="original2fake" stopProcessing="true">
                <match url="^(.+)$" />
                <action type="Redirect" url="/index.php/image/profile_images/{R:1}" redirectType="Permanent" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>
</configuration>