Mod_rewrite - 仅显示获取值

时间:2016-10-12 08:48:18

标签: php apache mod-rewrite web

我想在网址中仅显示GET值。

URL:

http://something.com/index.php?file=test.png

重写为:

http://something.com/test.png

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

以下.htaccess将满足您的要求

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_URI} !^/index\.php 
RewriteRule ^([^/]*)$ index.php?film=$1 [L]

希望这能帮到你!