我需要将所有请求重定向到另一个php文件 例如:
http://www.example.com/images/profile_images/thumb/mypic.jpg
to
http://www.example.com/index.php/image/profile_images/mypic.jpg/thumb
答案 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>