0
私はウェブサイトを実行している、computergk.comはWindows Azureとssl(Windows Azureからインストール)にホストされています。私はウェブサイトのwwwバージョンをwww以外のものにリダイレクトしたいと思います。既存のweb.configの設定は次のとおりです。どのようにsslとのワードプレスのウェブサイトをwwwから非wwwにwwwからazure
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress: http://computergk.com"
patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile"
negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory"
negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
私はすでに自分のドメインのwww cnameレコードを@に転送しています。私はGodaddy Class 2 Certification Authorityが提供するWindows Azure SSLを使用しています。私を助けてください。
おかげ
一切の.htaccessファイルがありませんを追加します。 web.configファイルがあります。 –