htaccess将一个文件重定向到另一个文件

时间:2014-04-20 16:19:52

标签: .htaccess mod-rewrite redirect

我已阅读this,这似乎对我的请求来说太长了。

并尝试了Redirect /index.php /index2.php但它无效(内部服务器错误)

我想要的是将我的一些php文件重定向到索引。例如,我的索引文件为

的header.php

content.php

footer.php

我希望将对此文件的直接访问重定向到index.php。用htaccess或其他方式可以吗?

mysite.com/index.php好的 mysite.com/header.php重定向到404或索引或其他内容。

1 个答案:

答案 0 :(得分:5)

尝试:

RewriteEngine On
RewriteRule ^(header|content|footer)\.php - [L,R=404]

RewriteEngine On
RewriteRule ^(header|content|footer)\.php index.php [L,R=301]