需要澄清mod_rewrite问题

时间:2011-06-18 06:51:44

标签: php apache url mod-rewrite short

我有一个使用PHP中的表单中的GET变量生成的URL。我遇到的问题是传递了两个变量。以下是一个示例网址,以澄清:

http://www.examplesite.com/example.php?first=one&second=two

我想在我的.htaccess中使用mod_rewrite来使它成为一个较小的URL。理想情况下,我想要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

1 个答案:

答案 0 :(得分:1)

试试这个:

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]