我的网站上有这样的网址。
http://localhost/tutor_institute/profiles/tutors/index.php?tutorCode=1255&tutorName=Jhon Amarathunga&city=Perth
我需要像这样重写它
http://localhost/tutor_institute/profiles/tutors/1255/Perth/Jhon Amarathunga.html
这里的tutor_insitute、profiles 和tutors 是我根目录下的子目录。index.php 页面存在于导师目录中,我的 htaccess 文件也存在于那里。
我在我的 htaccess 文件中是这样的
RewriteEngine on
RewriteRule ^/tutor_institute/profiles/tutors/([0-9]+)/([A-Za-z_]+)/([A-Za-z_]+)$ index.php?tutorCode=$1&tutorName=$2&city=$3 [NC]
但它不起作用..有人告诉我哪里出错了吗?