所以,例如,
fakesite.com/folder1/example1.php
fakesite.com/folder2/folder2a/example1.php
fakesite.com/folder3/example1.php
所有人都会用内容重写example1.php。 。
fakesite.com/example2.php
在各种文件夹中服务器上的很多文件都会发生这种情况,所以简单的重写就行了。
答案 0 :(得分:1)
假设您正在使用Apache,请尝试:
RewriteEngine On
RewriteRule example1.php /example2.php [L]
这对mod_rewrite来说非常基本,google搜索“apache rewrite examples”会给你这个。