if my site URL is mywebsitename.com/home , and I need any visitor who visit mywebsite.com turned to mywebsitename.com/home
which plugins will I need
Find the file .htaccess and paste the following code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mywebsite.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.mywebsite.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.mywebsitename.com/home$
RewriteRule (.*)$
http://mywebsitename.com/home/$1 [R=301,L]
</IfModule>
You're welcome. Please REP+. :)
where's the file .htaccess ?
my script is pinboard drupal theme , but I can't find that file on it
thanKs greenpeece so much , but my script is drupal not wordpress
(12-02-2013 01:18 AM)mywork Wrote: [ -> ]thanKs greenpeece so much , but my script is drupal not wordpress
Go to the main directory of website (often called as www/ or public_html/). There should be a file .htaccess, if not, create this file and paste the above code.