我需要重写 http://www.domain.net/img.php?id=example.jpg来 http://www.domain.net/index.php?id=example.jpg
example.jpg正在改变。 我对htaccess语法并不常见。有人能帮帮我吗?
答案 0 :(得分:2)
启用mod_rewrite
和.htaccess
至httpd.conf
(如果尚未启用),然后将此代码放入DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteRule ^img\.php$ /index.php [L,NC]
QUERY_STRING将自动转移到/index.php