我正在使用 htaccess 传递 2 个变量。主题和品牌
RewriteRule ^([A-Za-z0-9_-]+)/?$ ?subject=$1 [NC,L]
RewriteRule ^([A-Za-z0-9_-]+)/?$ ?brand=$1 [NC,L]
在我的函数文件中,我使用页面检测来包含相应的模块。
if (!empty($_REQUEST['subject']))
{
include_once("templates/pages.php");
}
else if (!empty($_REQUEST['brand']))
{
include_once("templates/brands_content.php");
}
问题:我无法检测到变量....它总是加载“templates/pages.php” 谁能指导我解决这个问题。
谢谢