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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
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.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
