RewriteEngine off <IfModule mod_suphp.c> suPHP_ConfigPath /home/xxx/public_html/mydomain.com/php.ini <Files php.ini> order allow,deny deny from all </Files> </IfModule> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> RedirectMatch 301 /Health-Beauty/Bath-Time/.* http://www.mydomain.com/for-couples/bath-time/ Code (markup): I just need mydomain.com/health-beauty/bath-time/ to redirect to /for-couples/bath-time Could someone help me out..htacces file above.
pls help me do check here http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file?
using your link here, is what I got --- still not working RewriteEngine off <IfModule mod_suphp.c> suPHP_ConfigPath /home/sizz/public_html/domain.com/php.ini <Files php.ini> order allow,deny deny from all </Files> </IfModule> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteRule ^health-beauty/bath-time.*$ http://mydomain.com/for-couples/bath-time [R=301,L] </IfModule> Code (markup):