htaccess重写与https的冲突

时间:2013-11-03 06:10:46

标签: php .htaccess mod-rewrite https

我有以下重写:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+?)$ user_home.php?domain=$1 [L,QSA]

哪种方法适用于重写我的网址,但我现在需要强制使用HTTPS,所以我使用的是:

RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

两者都有效,但它们不能一起工作。

mysite.com/somepage应重定向到https://mysite.com/somepage

,而是重定向到https://mysite.com/user_home.php?domain=somepage

我怎样才能让它发挥作用?

1 个答案:

答案 0 :(得分:3)

这对我有用;我猜你的问题可能在服务器配置方面或其他地方。虽然AFAICT重写规则很好。

<VirtualHost *:80>
    ServerAdmin webmaster@crazysite.com
    DocumentRoot /var/www
    <Directory /var/www/>
        Options FollowSymLinks
        AllowOverride All 
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

<VirtualHost _default_:443>
    ServerAdmin webmaster@crazysite.com
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
    SSLEngine on
    SSLCertificateFile    /etc/ssl/certs/ssl-cert-snakeoil.pem
    SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
</VirtualHost>

<强> /var/www/.htaccess

RewriteEngine On

RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+?)$ user_home.php?domain=$1 [L,QSA]

<强> /var/www/user_home.php

<?php
var_dump($_GET['domain']);

正在加载 http://crazysite.com/test 重定向到 https://crazysite.com/test ,页面上的输出为

  

string(4)“test”