Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
593 views
in Technique[技术] by (71.8m points)

mod rewrite - Internal subdomain to folder redirect

I want to create folders on the fly, but make it seem like I am creating subdomains on the fly using mod_rewrite. e.g.

Create "john" folder using PHP

www.example.com/john/

Then be able to access whatever I put in there at:

john.example.com

Thank you in advance,

Kris

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

First you need to configure your server to accept any subdomain for your domain example.com and redirect it to your virtual host that as well has to accept any subdomain. After that, you can use the following rule to rewrite that subdomain internally to a folder with the same name:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.
RewriteCond %{HTTP_HOST} ^([^/.]+).example.com$
RewriteRule ^ %1%{REQUEST_URI} [L]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...