我的 .htaccess 正在测试中,我添加了以下命令。
Options +FollowSymLinks +Indexes
RewriteEngine on
RewriteBase /
RewriteRule ^Categorie/([^.]+)$ test/index.php?p=$1 [L]
如果我在 url domain.com/test/Categorie/1 的索引中检查 p,我会得到 demo1。
如果我执行 domain.com/test/Categorie/1/somename/ 我会收到 404 错误。
在互联网上的任何地方,我都能找到解决我的问题的方法,但我无法让它正常工作,因为我一直遇到这个问题。