我想将对文件myfile.php的所有访问权限重定向到根域。
例如,我希望以下网址全部解析为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
答案 0 :(得分:1)
我想将对文件myfile.php的所有访问权限重定向到根域。
您可以使用mod_alias:
Redirect /myfile.php /?
或mod_rewrite:
RewriteEngine On
RewriteRule ^/?myfile.php$ /? [L,R]