这是我的.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 它给了我
不应该只是将我的请求转发给https://www.example.com 我无法弄清楚它为什么不能工作。
编辑: 问题可能是https://api.example.com的ssl无法正常工作