我已阅读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或索引或其他内容。
答案 0 :(得分:5)
尝试:
RewriteEngine On
RewriteRule ^(header|content|footer)\.php - [L,R=404]
或
RewriteEngine On
RewriteRule ^(header|content|footer)\.php index.php [L,R=301]