Reputation: 3425
My question is, How can remove last directory using htaccess rule.
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/
Thanks in advance.
Upvotes: 2
Views: 426
Reputation: 1203
Inside mywedding.com/anandn/index.php write the following code header("location:mywedding.com/anandn/theme/");
it will redirect you to your site.
Upvotes: 0
Reputation: 785276
Place this rule in DocumentRoot/.htaccess
file:
RewriteEngine On
RewriteRule ^([^/.]+)/?$ /$1/theme/ [L]
Upvotes: 2