0
我有一個php symfony項目,我將apache作爲服務器去除,並且出於性能原因使用nginx。 沒有在我的virtualhost.conf我有以下設置將重寫規則apache轉換爲nginx
<Directory "/usr/share/myvirtualhost/web">
Require all granted
Options -Indexes +FollowSymLinks
AllowOverride None
Allow from All
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-DEVELOP-DOC-TEST} ^running$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app_doctest.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
</Directory>
現在我不知道如何將它與
RewriteCond %{HTTP:X-DEVELOP-DOC-TEST} ^running$
我在哪裏檢查,如果轉換爲正確的nginx重寫規則,尤其是部分正在設置標題,將請求轉發到app_doctest.php
我該如何才能從這裏獲得更多?