.htaccess不将请求转发到另一个域

时间:2017-02-14 08:37:20

标签: .htaccess redirect

这是我的.htaccess

RewriteEngine on

# If a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward it to index.php
RewriteRule . index.php

RewriteCond %{HTTP_HOST} ^api.example.com [NC]
RewriteRule ^(.*)$ https://www.example.com [L,R=301,NC]

#For api send authorization header
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]

当我尝试发帖时 https://api.example.com/user/login 它给了我enter image description here

不应该只是将我的请求转发给https://www.example.com 我无法弄清楚它为什么不能工作。

编辑: 问题可能是https://api.example.com的ssl无法正常工作

0 个答案:

没有答案