如何解决需要澄清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]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。