HTACCESS - 在URL中使用空格

时间:2013-09-17 11:04:01

标签: php .htaccess

我必须(想要;)在URL中使用空格。我通过htaccess制作“可爱的”网址:

RewriteRule ^StorageList.php/([a-zA-Z]+)/([0-9]+)/([0-9a-zA-Z%+-]+)$ StorageList.php?type=$1&users_id=$2&parts_section=$3 [L]

但是当我去StorageList.php / Point / 21 / Ford Fiesta时,我的脚本没有得到可变数据。

1 个答案:

答案 0 :(得分:4)

将正则表达式更改为允许空格:

RewriteRule ^StorageList\.php/([a-z]+)/([0-9]+)/(.+?)/?$ StorageList.php?type=$1&users_id=$2&parts_section=$3 [L,NC,NE,QSA]