0
當維護文件就位時,第一條規則正常工作。當它不是 - 第二條規則不是重定向到特定的URI。是否有規則的訂購問題?使用HTTPD.conf從根重定向到特定URI
#########################################
RewriteCond %{DOCUMENT_ROOT}/server_maintenance.html -f
RewriteCond %{REQUEST_FILENAME} !/server_maintenance.html
RewriteRule ^.*$ /server_maintenance.html [L]
#########################################
## the %{HTTP_HOST} evaluates to the HTTP header with the name given in this case host.server.org, with NC being non case sensitive.
## it will rewrite the url at the server side to append the URI of lawson/portal
##########################################################################
RewriteCond %{HTTP_HOST} ^host\.server\.org$ [NC]
RewriteRule ^host\.server\.org$ "https\:\/\/host\.server\.org\/lawson\/portal" [L]
#########################################
- 我收到了以下問題:您沒有權限訪問/在此服務器上。 Options指令禁止的目錄索引:/ lsf10/webdocs/ – Configueroa
如果您沒有索引或目錄索引集,您希望apache如何爲目錄提供服務? –