0

我需要重定向这样的页面:

http://example.com/clients/themes?domain=localhost.com

此链接应重定向到同一目录中的 skin.php。

谁能帮我?谢谢。

4

1 回答 1

2

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} ^domain=localhost\.com$ [NC]
RewriteRule ^clients/themes/?$ clients/skin.php? [L,NC]

这将在内部转发您的请求以/clients/skin.php剥离查询字符串。如果您还想要查询字符串,请?skin.php.

于 2012-05-24T12:07:55.867 回答