-1

下面是我的conf文件:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html/kiran

    RewriteEngine On
    RewriteCond %{DOCUMENT_ROOT}/index.html -f
    RewriteCond %{SCRIPT_FILENAME} !index.html
    RewriteRule ^.*$ /index.html [R=307,L]
    ErrorDocument 307 /index.html

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

当我在做 curl 时,它会给我下面的状态码 -->

# curl -iL localhost
HTTP/1.1 307 Temporary Redirect
Date: Sat, 28 Mar 2020 09:36:49 GMT
Server: Apache/2.4.29 (Ubuntu)
Location: http://localhost/index.html
Last-Modified: Fri, 27 Mar 2020 15:55:07 GMT
ETag: "239-5a1d8201d0033"
Accept-Ranges: bytes
Content-Length: 569
Content-Type: text/html

HTTP/1.1 200 OK
Date: Sat, 28 Mar 2020 09:36:49 GMT
Server: Apache/2.4.29 (Ubuntu)
Last-Modified: Fri, 27 Mar 2020 15:55:07 GMT
ETag: "239-5a1d8201d0033"
Accept-Ranges: bytes
Content-Length: 569
Vary: Accept-Encoding
Content-Type: text/html

我的要求是,当我点击页面时,它会给我 307 的所有内容。

4

1 回答 1

0

It looks like it's doing exactly what you asked. Your client got a 307 and was redirected the one URL you have excluded from the rewrite.

于 2020-04-12T21:33:42.890 回答