1

我需要将 http://www.domain.net/img.php?id=example.jpg重写为 http://www.domain.net/index.php?id=example.jpg

example.jpg 正在改变。我不习惯使用 htaccess 语法。有人能帮助我吗?

4

1 回答 1

2

启用mod_rewrite.htaccess通过httpd.conf(如果尚未启用),然后将此代码放入您的DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteRule ^img\.php$ /index.php [L,NC]

QUERY_STRING 将自动结转到/index.php

于 2013-10-30T18:40:00.687 回答