我正在尝试在我网站的管理部分对动态页面进行网址重写,但上传web.congif文件时没有任何变化。
另外,我希望web.config文件位于admin目录而不是root目录。
非常感谢任何帮助。
当前地址如www.site.com/admin/mypage.php?id=5&name=$name
希望它看起来像www.site.com/admin/mypage/5/Jack
以下是我正在使用的代码,但没有任何变化?请帮帮忙?!
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite to mypage.php" stopProcessing="true">
<match url="^mypage/([0-9]+)/([_0-9a-z-]+)/?$" />
<action type="Rewrite" url="mypage.php?id={R:1}&name={R:2}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>