http和https的RewriteRule

时间:2017-04-07 16:36:19

标签: apache .htaccess mod-rewrite

在Ubuntu系统上,我在端口80上运行drupal。我在端口8000(gunicorn),8080(customServer)等上运行其他服务。

我的目标是将所有端口80流量定向到https,并将其他服务(8000,8080等)保留给http。

现在我有000-default:

   $today = new DateTime();
    $first  = $today->format('Y-m-d'); // 2017-04-07
    $second = $today->modify('+1 day')->format('Y-m-d'); // 2017-04-08
    echo $first;
    echo $second;

但是这会将所有内容(端口80,8000,8080等)指向https。

我可以使用什么RewriteRule或RewriteCond将端口80的http流量仅导向https并让其他人独自一人?

我愿意接受建议......即使RewriteRule不是正确的路径。感谢。

0 个答案:

没有答案