我是使用" .htaccess"进行网址重写的新手。文件。在"搜索"之后替换查询字符串时遇到问题在URL中。我正在使用MVC格式来开发我的网站,并在URL中搜索"搜索",这是可以在" Dictionary"中调用的方法之一。控制器。
这就是我想要的:
http://localhost/mvcWeb/dictionary/search/good
这就是我从网址获得的内容:
http://localhost/mvcWeb/dictionary/search?dictionary=good
这就是我在" .htaccess"文件:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
请帮助我,并提前感谢你。