使用 htaccess 重定向文件

使用 htaccess 重定向文件

有没有一种方法可以将一些文件(例如 file.php)重定向到 mysite.com/test,并将其放置在网络空间的随机位置(web-root、一个或多个目录内等)?

Example 1:

我想将位于根目录中的 file.php 重定向到 mysite.com/test

Example 2:

我想将随机目录中的 file.php 重定向到 mysite.com/test

答案1

您可以使用以下配置来重定向以 结尾的任何 URL file.php

RewriteEngine on
RewriteCond %{REQUEST_URI} /file.php$
RewriteRule file.php$ http://mysite.com/test [R,L]

相关内容