Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,例如,
fakesite.com/folder1/example1.php fakesite.com/folder2/folder2a/example1.php fakesite.com/folder3/example1.php
all 会用 . 的内容重写 example1.php。. .
fakesite.com/example2.php
这将发生在服务器上各种文件夹中的大量文件中,因此简单的重写将不起作用。
假设您使用的是 Apache,请尝试:
RewriteEngine On RewriteRule example1.php /example2.php [L]
这对于 mod_rewrite 来说真的很基础,谷歌搜索“apache rewrite examples”会给你这个。