For most of website that integrated joblet like asoboo. right now just link to http://asoboo.joblet.jp
But you may not want your user go out of your own domain. If you want to do so, You need to create a subdomain for you website, because things like http://asoboo.com/jobs simple not very easy to work. (all inside url of joblet is begain with / )
So For Apache, create a virtual host
ServerName jobs.asoboo.com
<Directory proxy:http://asoboo.joblet.jp>
Order Allow,Deny
Allow from all
</Directory>
ProxyPass / http://asoboo.joblet.jp/
ProxyPassReverse / http://asoboo.joblet.jp/
And Then you can point your browser to http://jobs.asoboo.com, :)
2 comments:
Cool! Let's try it out!
Post a Comment