不要理解涉及查询字符串参数的重写规则

时间:2014-08-19 18:19:36

标签: php .htaccess mod-rewrite

我的菜单通过

链接到内部网站
<a href="<?php $PHP_SELF ?>?site=company">

index.php以这种方式包含内容:

if ($_GET['site']=="company") {
    include'sites/company.php';
}

到目前为止一切顺利。现在我搜索了几个小时并尝试了很多东西来重写从/index.php?site=company/company的地址。什么都没有生效。尝试之一:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([\w]+)/?([\w]+)? /index.php?site=$1

有人可以帮帮忙吗?我是.htaccess的新手。

0 个答案:

没有答案