Apache重定向工作不正常

时间:2012-04-22 19:23:16

标签: php apache mod-rewrite redirect

我正在为我的婚礼网站设置重定向,以便http://www.mydomain.com/rsvp.php/q/something重定向到http://www.mydomain.com/rsvp.php?q=something,但只能在服务器端(也就是说,客户端仍会看到rsvp.php/q/something地址栏)。

现在,我在这个网站的apache配置中有以下内容:

<VirtualHost *>
        ServerAdmin my@email.com
        ServerName www.mydomain.com
        DocumentRoot /var/www/www.mydomain.com
        Options -Indexes +FollowSymLinks
        RewriteEngine on
        RewriteRule ^/rsvp.php/q/(.*) /rsvp.php?q=$1
</VirtualHost>

现在,我还在PHP文件的顶部有一个元重定向(如果用户在q查询变量中没有任何内容),它会重定向到index.html:

<?php
  $userHash = $_GET['q'];
?>

<!doctype html>
<html>
        <head>
                <title>Wedding - RSVP Page</title>
<?php

        // If we don't have a user hash, then let's redirect to the main
        // page.
        if (!$userHash) {
          echo '<meta http-equiv="refresh" content="0; url=http://www.mydomain.com/">';
        }
?>

同样,这似乎工作正常,但有一个例外。我正在使用表单供用户输入他们的RSVP数据。在提交时,它会调用脚本submit-form.php。访问地址http://www.mydomain.com/getID.php时,它会重定向到index.html,这不是我想要的。

如果我删除RewriteRule,它会按预期工作,但我没有得到一个好的网址(我必须使用q=something而不是q/something)。我不是很擅长mod_rewrite,所以我想知道是否有人能给我一些帮助让我知道我做错了什么。

谢谢!

1 个答案:

答案 0 :(得分:1)

你需要告诉apache不要使用RewriteCond重写现有文件。

在.htaccess中添加以下代码:

rewriteengine on
Options +FollowSymLinks

RewriteCond %{SCRIPT_FILENAME} !-d  #not a directory
RewriteCond %{SCRIPT_FILENAME} !-f  #not a file
RewriteRule ^rvsp/([^/\.]+)?$  rvsp.php?q=$1

,在你的rvsp.php文件中,添加以下代码:

<?php
$q = $_GET['q'];
?>

getID.php形式的操作应如下所示:

http://www.mydomain.com/rvsp/query

其中query是用户输入