Edit: Second possibility. If you're running off of windows, and the extra typing is slowing you down, check out PhraseExpress. Using this software, you can quite easily define a phrase that will automatically output http:// before your server links.
If you were copying and pasting, the phrase/macro content would look something like this:
http://{#INSERTCLIPBOARD}
If you're manually typing it in, just remove everything after the second slash and add your choice address. Then all you have to do is set up a hotkey or autotext trigger to output the desired phrase.
The software seems daunting at first, but as someone who's been using it for a while, trust me, it's really useful, and will drastically cut back your workflow.
---ORIGINAL ANSWER BELOW---
If you're only working from one machine, you can edit the host file on your client machine/access terminal to make whatever url point to your server's IP address. For example, you can edit the host file to state that requests to "myserver.com" automatically go to a custom ip address that you define in the host file. You can then enter a link such as "myserver.com:8080/pallet?" into google, and it should redirect you accordingly.
if you're in a domain environment (in a corporate network, usually), you can enter the full domain name of your server (e.g. 1rnvg91.MyDomain:8080/pallet?). That should also work properly.
More info on editing the hosts file, in case you don't know: enter link description here
I just tried to replicate but it works for me. What version of Chrome are you using? What method of entering the text into the bar are you using? Normally, I have the opposite issue with chrome. If I try to do a search for a file within chrome, it treats it as a web address due to the extension as opposed to doing a search for the filename. – TheEmpireNeverEnded – 2012-02-21T20:39:59.713
If I enter
1rnvg91:8080/pallet?
it takes me to Google. If I enterhttp://1rnvg91:8080/pallet?
it takes me to my server like it should. – corsiKa – 2012-02-21T20:42:02.070I see. The issue here is that there doesn't seem to be a "." anywhere in your url. The way that the google search/http bar works is it searches your input for a period surrounded by alpha chars (no spaces), and if it finds one, will treat it as a domain (automatically put http://) Without the period surrounded by alpha, it thinks you're entering search terms. – TheEmpireNeverEnded – 2012-02-21T20:58:09.323