我想将 URL 屏蔽http://example.com/index.php?path=controller/function
为http://example.com/controller/function
. function
不需要在场。
如何使用 htaccess 文件执行此操作?
以下不起作用。
RewriteRule ^/?assets/(.*)$ assets/$1 [L] # directory for CSS, images, and JavaScript
RewriteRule ^$ /index [redirect]
RewriteRule ^([a-zA-Z]+)/?([a-zA-Z/]*)$ index.php?path=$1/$2 [L]
目前,如果我http://example.com/controller/function
在浏览器中输入,我会收到 404 错误,但输入http://example.com/index.php?path=controller/function
有效。
谢谢!