我需要重定向这样的页面:
http://example.com/clients/themes?domain=localhost.com
此链接应重定向到同一目录中的 skin.php。
谁能帮我?谢谢。
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放在您.htaccess
的DOCUMENT_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
.