我想在虚拟目录中关闭 ssl - cron
一些需要通过 http 运行的 url 例如 /cron/one 、 /cron/two 或 /cron/three
我正在使用此重写来强制使用 ssl
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
一些例子,这里应该关闭 ssl:
/cron/one
/cron/two
/cron/three
一些帮助?