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
502 views
in Technique[技术] by (71.8m points)

redirect - .htaccess redirection to subfolder (masked)

I want to redirect "www.adomain.com" to "www.adomain.com/cms". The cms-part should be masked.

I don't get it to work silently. So "cms" is always part of the url.

I tried this solution: https://stackoverflow.com/a/4475173/1052107, but I always get an Internal Server Error.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ /folder/$1

And this should go in the .htaccess file at the root of the domain.

This is pulled off a site I have doing this now, so it should work


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

...