0

我的 .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 错误。

在互联网上的任何地方,我都能找到解决我的问题的方法,但我无法让它正常工作,因为我一直遇到这个问题。

4

1 回答 1

0
RewriteRule ^c([0-9]+).*\.html test/index.php?c=$1

是我用来修复它的。

于 2013-07-13T22:36:16.620 回答