正如我以前的问题可能已经告诉你的那样,我对modrewrite不太满意。我试图搜索并为这个特殊问题填空。我希望有人能协助我解决这个问题;
我使用modrewrite作为短网址生成器的一部分,直接访问唯一ID会将它们转发到目的地。添加/ v到最后将允许门户页面显示他们被转发到的URL(如预览页面)
因为/ v在ID之后,它可以正常工作,但我想允许通过 $ _ GET
添加新页面这是给用户的快捷链接;
javascript:void(location.href='http://www.website.com/n/?url='+location.href)
这是.htaccess
的内容RewriteEngine On
RewriteRule ^n actions.php?do=new [NS,L,NC]
RewriteRule ^([a-zA-Z0-9]+)$ actions.php?id=$1 [NC]
RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)$ actions.php?id=$1&do=$2 [NC]
问题: 因为 / n 代替了ID,它显然会发生冲突。我尝试过NS和L,因为它们能够在匹配规则后停止执行。经过进一步检查,它们当然不能像我想的那样工作。
最后,这里有一些关于如何在最终产品中查找URL的示例;
New Submission:
http://www.web.com/n/?url=http://www.google.com [Outputs new URL as 12345]
Visit the ID directly:
http://www.web.com/1A2b34D5 [Forwards to URL Destination]
Visit the ID Preview Link:
http://www.web.com/1A2b34D5/v [Displays preview, Delayed Forwarder]
答案 0 :(得分:1)
如果您想从查询字符串中获取url
变量,只需将QSA
添加到选项中,它就会将该网址保存在$_GET['url']
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f # if the url file does not exist
RewriteRule ^n/?$ actions.php?do=new [NS,L,NC,QSA]
RewriteRule ^([a-zA-Z0-9]+)$ actions.php?id=$1 [NC,L]
RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)$ actions.php?id=$1&do=$2 [NC,L]
同样在你的actions.php中你必须放置条件:
if (isset($_GET['do']))
{
if ($_GET['do'] == 'new') // http://www.web.com/n/?url=http://www.google.com
{
if (!isset($_GET['url'])) die('No url');
// save the url
// and outputs new URL
}
else if ($_GET['do'] == 'v') // http://www.web.com/1A2b34D5/v
{
// Visit the ID Preview Link
}
}
else // http://www.web.com/1A2b34D5
{
// Visit the ID directly
}
修改强>
我不知道它发生了什么,但就像我在评论中所说的那样,我已经在我的localhost中测试了它并且按照您的预期工作,在我的测试中,我有test.php
这个内容{{1甚至我创建了一个具有相同内容的var_dump($_GET);
文件,以下是我测试过的一些网址示例:
<强>例1:强>
actions.php
或
http://localhost/n?url=google.com
此规则已执行:
http://localhost/n/?url=google.com
输出:
RewriteRule ^n/?$ actions.php?do=new [NS,L,NC,QSA]
<强>例2:强>
array(2) { ["do"]=> string(3) "new" ["url"]=> string(10) "google.com" }
输出:http://localhost/n12345
array(1) { ["id"]=> string(6) "n12345" }
输出:http://localhost/nnnn456
此规则已执行:
array(1) { ["id"]=> string(6) "nnnn456" }
<强>示例3:强>
RewriteRule ^([a-zA-Z0-9]+)$ actions.php?id=$1 [NC,L]
输出:http://localhost/n12345/v
此规则已执行:
array(2) { ["id"]=> string(6) "n12345" ["do"]=> string(1) "v" }