0

所以目前我有网址websitename.com/posts/post

我想把它改成websitename.com/post

我现在已经尝试了 3 天,但没有运气。看到了 .htaccess 的大量内容,但 web.config 的内容不多

提前道歉,因为我确定我在问一个非常愚蠢的问题,

谢谢!

4

1 回答 1

0

也许这就是你想要的。把它放在你网站的根目录下。你也可以换RewriteRedirect那里。

<?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>
于 2017-08-23T08:32:41.983 回答