使用mod_rewrite删除“/ ent /”子文件夹

时间:2013-09-25 17:19:50

标签: regex apache .htaccess mod-rewrite

您好我曾经从子文件夹发布我的网站,但它现在已移至root。问题是我与网址中包含的子文件夹“/ ent /”有很多链接。

有些网址也包含了index.php,如果有人可以帮忙摆脱它会很棒!。

示例:http://www.myurl.com/ent/index

示例:http://www.myurl.com/ent/index.php/index

由于

1 个答案:

答案 0 :(得分:0)

启用mod_rewrite.htaccesshttpd.conf,然后将此代码放入DOCUMENT_ROOT/.htaccess文件中:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^ent/(.*)$ /$1 [L,NC,R=301]