Using Ubuntu 12.04 running wordpress.
I want to add subdomain to redirect any sub-directory or page.
For example: My site: ibrahimmumcu.com Redirect: kisa.ibrahimmumcu.com to ibrahimmumcu.com/any/subdirectory
How can I do that?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I found my best solution.
Added these lines to .htaccess file.
RewriteCond %{HTTP_HOST} ^sub\.mysite\.com$ [NC]
RewriteRule ^(.*) http://www.external-site-or-directory.com/$1 [L,R]
another best solutions https://www.digitalocean.com/community/questions/redirect-subdomain-to-another-website
simple way to do this is a 2-part solution:
in the .htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.mysite.com
RewriteCond %{HTTP_HOST} ^(.+).ibrahimmumcu.com
RewriteRule ^([^/]*)$ http://www.ibrahimmumcu.com/subdirectory/%1 [P,L,QSA]
in the vhost config, add (below ServerName):
ServerAlias *.ibrahimmumcu.com
You will need to enable .htaccess by changing
AllowOverride None
To
AllowOverride All
This will change allow people to visit
kisa.ibrahimmumcu.com
and actually get
www.ibrahimmumcu.com/subdirectory/kisa
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.