Hans
Hans

Reputation: 568

What is adding #. to my URL?

Approximately 0.5 seconds after loading my cakephp application, something is adding a random code beginning with "#." to the url.

This behavior can be seen here, the url changes from:

http://dev4.west-dyke.com/verhuur

to

http://dev4.west-dyke.com/verhuur#.Ud03FBcW3RE

What is causing this?

Upvotes: 1

Views: 112

Answers (1)

Rikesh
Rikesh

Reputation: 26441

As I commented the issue is not due to cakephp but addthis plugin, it basically append an unique Id if data_track_addressbar in its config is set to true.

So to get rid of that just change it's value to false.

var addthis_config = {"data_track_addressbar":false};

Upvotes: 5

Related Questions