Mod用多个变量重写

时间:2013-07-13 21:44:37

标签: mod-rewrite

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

互联网上的任何地方我都能找到解决我问题的方法,但是因为我不断解决这个问题,所以我无法解决这个问题。

1 个答案:

答案 0 :(得分:0)

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

是我用来解决它的问题。