我想在网址中仅显示GET值。
URL:
http://something.com/index.php?file=test.png
重写为:
http://something.com/test.png
你能帮我吗?
答案 0 :(得分:0)
以下.htaccess将满足您的要求
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteRule ^([^/]*)$ index.php?film=$1 [L]
希望这能帮到你!