关于系统
我的项目中有这种格式的 URL:-
http://project_name/browse_by_exam/type/tutor_search/keyword/class/new_search/1/search_exam/0/search_subject/0
其中关键字/类对意味着使用“类”关键字进行搜索。
我有一个通用的 index.php 文件,它为项目中的每个模块执行。从 URL 中删除 index.php 只有一个重写规则:-
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L,QSA]
我在准备搜索 URL 时使用 urlencode(),在阅读搜索 URL 时使用 urldecode()。
问题
只有正斜杠字符会破坏 URL,导致 404 page not found 错误。例如,如果我搜索one/two
的 URL 是
http://project_name/browse_by_exam/type/tutor_search/keyword/one%2Ftwo/new_search/1/search_exam/0/search_subject/0/page_sort/
我该如何解决?我需要将 index.php 隐藏在 URL 中。否则,如果不需要,正斜杠不会有问题,我可以使用这个 URL:-
http://project_name/index.php?browse_by_exam/type/tutor_search/keyword/one
%2Ftwo/new_search/1/search_exam/0/search_subject/0