magento mod重写不工作帮助想要(htaccess):)

时间:2010-11-19 21:22:30

标签: .htaccess magento

我的情况.....

我有这个网址http://www.example.com/index.php/category?catid=3

我希望将其重写为

http://www.example.com/bikes/3

我在网站上的重写已启用....所以我在产品网站上有很好的网址

我想要重写的页面是我自己的带文本页面的模块

我把它放在我的htaccess中

RewriteRule .* index.php [L]
RewriteRule ^bikes/(\.*)/$ category?catid=$1

我已尝试过任何类似1000种组合的东西,但似乎没有任何工作,我检查了我的htaccess是否正常工作,但确实如此。第一行也可以重定向到谷歌工作。

希望有人能告诉我这里做错了什么?

1 个答案:

答案 0 :(得分:0)

我在这里有这个例子,我认为你可以根据自己的需要来解决这个问题:

漂亮网址:/topic-41/favourite-cheese.html
丑陋的网址:/viewtopic.php?t = 41
htaccess的:

选项+ FollowSymLinks
RewriteEngine On RewriteRule ^ topic - ([0-9] +)/ [A-Z0-9 _-] +。html $ /viewtopic.php?t=$1 [NC,L]