使用HTACCESS如何将example.php重写为/example2.php,无论example1.php在哪个文件夹中

时间:2012-06-18 18:57:27

标签: .htaccess rewrite

所以,例如,

fakesite.com/folder1/example1.php
fakesite.com/folder2/folder2a/example1.php
fakesite.com/folder3/example1.php

所有人都会用内容重写example1.php。 。

fakesite.com/example2.php

在各种文件夹中服务器上的很多文件都会发生这种情况,所以简单的重写就行了。

1 个答案:

答案 0 :(得分:1)

假设您正在使用Apache,请尝试:

RewriteEngine On
RewriteRule example1.php /example2.php [L]

这对mod_rewrite来说非常基本,google搜索“apache rewrite examples”会给你这个。