web.fonfig子目录重定向

web.fonfig子目录重定向,第1张

rewrite ^/IMG/(.+) /ABC/$1 last其实,这个需求不必用rewrite,可以直接使用alias来实现: location /IMG/ { alias /var/www/ABC/IMG/}

打开dreamweaver,建立一个新的xml页面,或者直接新建一个文本文档

2

复制以下的代码粘贴进去

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

<configuration>

<system.webServer>

<rewrite>

<rules>

<clear />

<rule name="sudu_rewritefunc_unifieddomainname" enabled="true" patternSyntax="ECMAScript" stopProcessing="false">

<match url="(.*)" ignoreCase="true" negate="false" />

<conditions logicalGrouping="MatchAll" trackAllCaptures="false">

<add input="{HTTP_HOST}" matchType="Pattern" pattern="^xiaoxiaomayi\.com$" ignoreCase="true" negate="true" />

</conditions>

<action type="Redirect" url="http://xiaoxiaomayi.com/{R:1}" appendQueryString="true" redirectType="Permanent" />

</rule>

</rules>

</rewrite></system.webServer>

</configuration>

3

1、dreamweaver保存的时候把文件名设为“web.config”

保存类型选择“所有文件”

2、文本文档保存后把文件名改为“web.config”(记得把扩展名也改了)

4

最后将web.config上传到你的网站根目录就可以了。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/54718.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-02-26
下一篇2023-02-26

发表评论

登录后才能评论

评论列表(0条)

    保存