使用htaccess从URL中删除最后一个目录

时间:2014-03-25 13:32:19

标签: php .htaccess

我的问题是,如何使用htaccess规则删除最后一个目录。

http://mywedding.com/anandn/
should load content of
http://mywedding.com/anandn/theme/

OR

http://mywedding.com/mamtaandkuldip/
should load content of
http://mywedding.com/mamtaandkuldip/theme/ 

提前致谢。

2 个答案:

答案 0 :(得分:2)

将此规则放在DocumentRoot/.htaccess文件中:

RewriteEngine On

RewriteRule ^([^/.]+)/?$ /$1/theme/ [L]

答案 1 :(得分:0)

内部 mywedding.com/anandn/index.php 写下面的代码 报头("位置:mywedding.com/anandn/theme /&#34);

它会将您重定向到您的网站。