Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

nourziada's avatar

There is strange symbols in the link appear when i upload my project to real hosting

hello , iam using laravel 5.5 and using voyager control panel when i programming my website on localhost , no problems appear , but when i upload the project to real hosting , and i click on any link in the website , there is a strange symbols appear in the link

example : http://big4.mapmall.co/admin/settings?yjfxclpozw=qwjpwqibpm

this is the symbols

?yjfxclpozw=qwjpwqibpm

and this symbols especially appear when i click in any tab from the left side menu or in taps

0 likes
2 replies
bobbybouwmann's avatar

It's not a strange symbol. It's called a query parameter. This happens for example when you do a GET request on a form, all fields will be appended to the url using that key value approach.

I think your tab is adding something to the url, or some plugin in your browser is doing that. For that we need to see a bit more code, because I can't see how you build your menus and so on.

arthurvillar's avatar

Strange that this isn't happening on your localhost. But, like @bobbybouwmann pointed out, this is what is expected of a form to do with a GET request. Look for something like this in your view

<input name="yjfxclpozw" value="qwjpwqibpm">

Please or to participate in this conversation.