开发者

URL Redirection

开发者 https://www.devze.com 2022-12-29 03:14 出处:网络
How do I set it up s开发者_开发知识库o that when someone goes to www.example.com/file1.mp3, they get redirected to www.example.com/file2.mp3, but the address in the browser bar stays the same?the comp

How do I set it up s开发者_开发知识库o that when someone goes to www.example.com/file1.mp3, they get redirected to www.example.com/file2.mp3, but the address in the browser bar stays the same?


the company you get your domain applies setting for that, there should be a option to change it. i really don't know whether you can handle it by a piece of code but the setting for the domain name is applied in that way.contact where you get your domain name or see the settings.


If using an Apache server, you can do it via .htaccess:

Alias /file1.mp3 /file2.mp3 

(Docs for the alias directive)

Also, you can dig into the whole mod_rewrite thing.

0

精彩评论

暂无评论...
验证码 换一张
取 消