我在/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时,我需要做同样的行为。
我该怎么做?