私のサイトにはこのようなURLがあります。
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 ページは tutors ディレクトリに存在し、そこに私の 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]
しかし、それは機能していません..どこが間違っているのか誰か教えてください。