我的网址看起来像
http://example.com/picture.php/82-1/category/19-appenzell_ausserrhoden?map
我希望将其重写为
http://example.com/picture/82-1/category/19-appenzell_ausserrhoden?map
如何在HTaccess中执行此操作?
答案 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]