需要澄清mod_rewrite问题

| 我有一个使用PHP表单中的GET变量生成的URL。我的问题是要传递两个变量。这是一个示例网址,用于说明:
http://www.examplesite.com/example.php?first=one&second=two
我想在我的.htaccess文件中使用mod_rewrite来使其成为一个较小的URL。理想情况下,我想要该网址...
http://www.examplesite.com/one
才能重定向到完整的网址...
http://www.examplesite.com/example.php?first=one&second=two
但是如您所见,有两个变量。这可能吗?如果没有,使用这两个变量获取URL的最短时间是什么? 这是我目前使用mod_rewrite解决此问题的尝试
RewriteEngine on  

# don\'t rewrite if the file exists
RewriteCond %{REQUEST_FILENAME} !-f
# don\'t rewrite if the directory exists
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ example.php?first=$1&second=$2
    
已邀请:
        尝试这个:
RewriteEngine on  

# don\'t rewrite if the file exists
RewriteCond %{REQUEST_FILENAME} !-f
# don\'t rewrite if the directory exists
RewriteCond %{REQUEST_FILENAME} !-d

# http://www.examplesite.com/one/two
RewriteRule ^([^/]*)/([^/]*)$ /example.php?first=$1&second=$2 [L]
    

要回复问题请先登录注册