如何在htaccess中重写部分网址?

时间:2015-06-17 11:47:50

标签: .htaccess url-rewriting

我的网址看起来像

http://example.com/picture.php/82-1/category/19-appenzell_ausserrhoden?map

我希望将其重写为

http://example.com/picture/82-1/category/19-appenzell_ausserrhoden?map

如何在HTaccess中执行此操作?

2 个答案:

答案 0 :(得分:1)

我认为这会奏效:

RewriteRule    ^picture/?$ picture.php [NC,L] #flags: case insensitive, last

答案 1 :(得分:0)

您可以使用此规则:

Options -MultiViews

RewriteEngine On
RewriteRule ^picture/(.+)$ picture.php/$1 [NC,L]