0

Apache + PHPアプリケーションをAzureに移行する際に問題が発生したため、私はあなたに連絡しています。Azure Web Appのポリシーを書き直します

私はApache rewriteモジュールを使用してRequest URIを読み取り、正しいURLに変換していました。私はこれらの命令をIISの書き換えルールに翻訳しましたが、Azureで動作させることはできません。

のルールは以下の通りであった。

RewriteEngine on 
RewriteRule ^(zpanel\/)(.*)\.json$ $1.json.php [QSA,L] 
RewriteRule ^(zpanel\/)(.*)\-process\-add$ $1_procesar.php?abm_accion=a [QSA,L] 
RewriteRule ^(zpanel\/)(.*)\-process\-edit\-(.*)$ $1_procesar.php?abm_accion=m&id=$2 [QSA,L] 
RewriteRule ^(zpanel\/)(.*)\-process\-delete\-(.*)$ $1_procesar.php?abm_accion=d&id=$2 [QSA,L] 
RewriteRule ^(zpanel\/)(.*)\-add$ index.php?put=$1_am&abm_accion=a [QSA,L] 
RewriteRule ^(zpanel\/)(.*)\-edit\-(.*)$ index.php?put=$1_am&abm_accion=m&id=$2 [QSA,L] 
RewriteCond %{REQUEST_URI} !(css|js|favicon|img|php|json|icon|process|report|fonts|ckeditor) 
RewriteRule ^(zpanel\/)(.*)$ index.php?put=$1 [QSA,L] 

だから私はそれらを翻訳しました:

<rewrite xdt:Transform="InsertIfMissing"> 
    <rules xdt:Transform="InsertIfMissing"> 
     <clear/> 
     <rule name="rule 1d" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)\.json$" /> 
      <action type="Rewrite" url="/{R:1}{R:2}.json.php" appendQueryString="true" /> 
     </rule> 
     <rule name="rule 1l" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)\-process\-add$" /> 
      <action type="Rewrite" url="/{R:1}{R:2}_procesar.php?abm_accion=a" appendQueryString="true" /> 
     </rule> 
     <rule name="rule 1x" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)\-process\-edit\-(.*)$" /> 
      <action type="Rewrite" url="/{R:1}{R:2}_procesar.php?abm_accion=m&amp;id={R:3}" appendQueryString="true" /> 
     </rule> 
     <rule name="rule 1U" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)\-process\-delete\-(.*)$" /> 
      <action type="Rewrite" url="/{R:1}{R:2}_procesar.php?abm_accion=d&amp;id={R:3}" appendQueryString="true" /> 
     </rule> 
     <rule name="rule 1S" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)\-add$" /> 
      <action type="Rewrite" url="/{R:1}index.php?put={R:2}_am&amp;abm_accion=a" appendQueryString="true" /> 
     </rule> 
     <rule name="rule 1V" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)\-edit\-(.*)$" /> 
      <action type="Rewrite" url="/{R:1}index.php?put={R:2}_am&amp;abm_accion=m&amp;id={R:3}" appendQueryString="true" /> 
     </rule> 
     <rule name="Imported Rule 2" stopProcessing="true"> 
      <match url="^(zpanel\/)(.*)$" ignoreCase="false" /> 
      <conditions> 
       <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> 
       <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> 
       <add input="{URL}" pattern="^/css|js|favicon|img|php|json|icon|process|report|fonts|ckeditor$" ignoreCase="false" negate="true" /> 
      </conditions> 
      <action type="Rewrite" url="{R:1}index.php?q={R:2}" appendQueryString="true" /> 
     </rule> 
    </rules> 

しかし、この後、私はアズールで同じエラーメッセージを持っておきます。 "リソースが見つかりません"。

翻訳はOKですか? AzureバージョンのIISで動作するには、何かを変更する必要がありますか? ありがとう

答えて

0

あなたの説明とエラーメッセージによると、翻訳結果に何らかのエラーがあると思います。

私の知る限り、IISにはurl rewrite moduleという文字列があり、書き換えの役割を変換できます。

<rewrite> 
    <rules> 
    <rule name="Imported Rule 1" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)\.json$" ignoreCase="false" /> 
     <action type="Rewrite" url="{R:1}.json.php" appendQueryString="true" /> 
    </rule> 
    <rule name="Imported Rule 2" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)\-process\-add$" ignoreCase="false" /> 
     <action type="Rewrite" url="{R:1}_procesar.php?abm_accion=a" appendQueryString="true" /> 
    </rule> 
    <rule name="Imported Rule 3" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)\-process\-edit\-(.*)$" ignoreCase="false" /> 
     <action type="Rewrite" url="{R:1}_procesar.php?abm_accion=m&amp;id={R:2}" appendQueryString="true" /> 
    </rule> 
    <rule name="Imported Rule 4" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)\-process\-delete\-(.*)$" ignoreCase="false" /> 
     <action type="Rewrite" url="{R:1}_procesar.php?abm_accion=d&amp;id={R:2}" appendQueryString="true" /> 
    </rule> 
    <rule name="Imported Rule 5" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)\-add$" ignoreCase="false" /> 
     <action type="Rewrite" url="index.php?put={R:1}_am&amp;abm_accion=a" appendQueryString="true" /> 
    </rule> 
    <rule name="Imported Rule 6" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)\-edit\-(.*)$" ignoreCase="false" /> 
     <action type="Rewrite" url="index.php?put={R:1}_am&amp;abm_accion=m&amp;id={R:2}" appendQueryString="true" /> 
    </rule> 
    <rule name="Imported Rule 7" stopProcessing="true"> 
     <match url="^(zpanel\/)(.*)$" ignoreCase="false" /> 
     <conditions> 
     <add input="{URL}" pattern="(css|js|favicon|img|php|json|icon|process|report|fonts|ckeditor)" ignoreCase="false" negate="true" /> 
     </conditions> 
     <action type="Rewrite" url="index.php?put={R:1}" appendQueryString="true" /> 
    </rule> 
    </rules> 
</rewrite> 

あなたは、まずIISエクスプローラでURL書き換えモジュールをクリックできます。

は、私は(あなたと同じではありません)以下のように書き換え役割をtranlate、私はあなたがコードの下に使用して、再試行してください可能性が示唆されました。

次に、右側にインポートルールがあります。ボタンをクリックすると翻訳ウィンドウが表示されます。

enter image description here

関連する問題