.htaccess从文件夹重定向

时间:2011-05-16 15:17:34

标签: php apache .htaccess

我正在处理一项任务,我需要将转到特定文件夹的所有流量重定向回根目录:

Redirect /ridestream_start/ /index.php
#effectively, ridestream_start was our beta folder, 
#and we're moving our functionality to the root folder

为'ridestream_start'中的每个文件和文件夹编码重定向效率不是很高效,因为它们有很多...我将如何使用文件夹名称完成重定向编码?

2 个答案:

答案 0 :(得分:0)

如果我理解你想要什么,我认为以下内容是有效的。

RewriteEngine on
RewriteBase /
RewriteRule ^ridestream_start/ /index.php

答案 1 :(得分:0)

你能用这样的东西:

RewriteEngine On
RewriteRule ^/ridestream_start/.* /index.php.com[L,R=301]