htaccess使用https

时间:2018-05-28 13:37:39

标签: apache .htaccess mod-rewrite

我在/var/www/MyApp/

中有一个文件夹

index.php个文件。

/var/www/MyApp/中有一个包含此内容的.htaccess文件:

RewriteEngine on
RewriteRule ^oauthcallback.html$ - [L]
RewriteRule ^([^index.php?][^/]+)$ index.php?idApp=$1 [L]
/var/www/MyApp/index.php

中的

我有:

$myAppUrl = $_GET['idApp'];

...

当您转到http://www.example.com/MyApp/TheBestApp

时,此问题适用于http

$myAppUrl is "TheBestApp"

但是这种重定向不适用于https。

当你去https://www.example.com/MyApp/TheBestApp时,我需要做同样的行为。

我该怎么做?

0 个答案:

没有答案