标签: .htaccess
我想在URL中组合两种类型的变量。 像这样: test/(id)?data=(data)
test/(id)?data=(data)
是否可以使用.htaccess做到这一点? 我有此代码,但仅适用于test/(id)
test/(id)
RewriteEngine On #RewriteCond %{REQUEST_FILENAME} !-d #RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^test/([0-9a-zA-Z]+) test.php?id=$1 [NC,L]