php url编码和htaccess参数

时间:2011-09-27 10:44:33

标签: php .htaccess urlencode

我编写了我的网址文本(例如:Ice's Bird),并通过htaccess重定向将其作为参数传递给另一个文件,网址如下所示。

http://test.com/nature-pic-Ice%26%23039%3Bs_bird.php

在上面的网址中,我想要单词Ice's bird作为参数,但我只能在单引号前得到单词,例如:Ice

我的重定向代码是

RewriteCond %{REQUEST_URI} ^/nature-pic-(.*).php
RewriteRule ^nature-pic-(.*)\.php content.php?tpath=$1 [L]

如何从网址获取完整的字词?

1 个答案:

答案 0 :(得分:0)

这应该是你的.htaccess

RewriteEngine On
RewriteRule ^nature-pic-(.*).php test.php?tpath=$1 [L]

使用此地址完全测试nature-pic-Ice's_bird.php希望它能帮助