2

我想将所有对文件 myfile.php 的访问重定向到根域。

因此,例如,我希望以下 URL 都解析为 www.mydomain.tld :

www.mydomain.tld/myfile.php?Action=1&k=a-value
www.mydomain.tld/myfile.php?Action=2&k=parameter5
www.mydomain.tld/myfile.php?Action=parameters
www.mydomain.tld/myfile.php?Action=sitemap
4

1 回答 1

1

我想将所有对文件 myfile.php 的访问重定向到根域。

您可以使用 mod_alias:

Redirect /myfile.php /?

或 mod_rewrite:

RewriteEngine On
RewriteRule ^/?myfile.php$ /? [L,R]
于 2012-10-23T10:44:26.737 回答