所以目前我有网址websitename.com/posts/post
我想把它改成websitename.com/post
我现在已经尝试了 3 天,但没有运气。看到了 .htaccess 的大量内容,但 web.config 的内容不多
提前道歉,因为我确定我在问一个非常愚蠢的问题,
谢谢!
所以目前我有网址websitename.com/posts/post
我想把它改成websitename.com/post
我现在已经尝试了 3 天,但没有运气。看到了 .htaccess 的大量内容,但 web.config 的内容不多
提前道歉,因为我确定我在问一个非常愚蠢的问题,
谢谢!
也许这就是你想要的。把它放在你网站的根目录下。你也可以换Rewrite
到Redirect
那里。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="posts" patternSyntax="ExactMatch">
<match url="/posts/post" />
<action type="Rewrite" url="/post" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>