-1

Godaddy (Windows) ホスティング アカウントを持っていて、リダイレクトしたい:

www.example.com/folder/somewww.example.com/folder/some.html

この Web.config ファイルを追加しようとしましたが、html をリダイレクトするために追加するルールが見つかりません

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Add www" stopProcessing="true">
          <match url=".*" ignoreCase="true" />
          <conditions logicalGrouping="MatchAll">
            <add input="{HTTP_HOST}" negate="true" pattern="^www\.(.+)$" />
            <add input="{HTTP_HOST}" negate="true" pattern="^[^.]*dav.*" />
          </conditions>
          <action type="Redirect" url="http://www.{HTTP_HOST}/{R:0}" appendQueryString="true" redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>
4

1 に答える 1

0

.htaccess ファイルで次のコードを使用してみてください

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
于 2013-05-14T13:29:59.330 に答える