Questions tagged [uri-fragment]
24 questions
1
vote
1 answer
Log request string URL with # (number sign, hash, fragment) to apache/httpd custom access log?
In a Virtual Host I use CustomLog and mod_log_config to log HTTP Requests:
LogFormat "\"%r\"" custom
The problem is that the entire Query String isn't being logged when there's a #(Number Sign) in the URL (Visiting domain.tld/slug/foo^bar#baz…

Bas Peeters
- 3,269
- 4
- 33
- 49
1
vote
1 answer
Query after '#' in https://www.google.co.in/#q=better+flight+search
The URL follows the following scheme
scheme://domain:port/path?query_string#fragment_id
but a search for string
better flight search
result in the following url
https://www.google.co.in/#q=better+flight+search
according to the url scheme # is…

Gaurav Agarwal
- 18,754
- 29
- 105
- 166
0
votes
2 answers
Can a search engine link to a certain section of an HTML file?
If I have a page divided in sections/fragments, that are linked to within the page with anchors, like this:

joolss
- 409
- 4
- 10
0
votes
1 answer
UriFragmentUtility causes servlet exception
As i was following this vaadin: https://vaadin.com/book/-/page/advanced.urifu.html tutorial on how to properly uses the UriFragmentUtility, i ended up creating the object and after trying to add this component to my main window, it fails with the…

Warz
- 7,386
- 14
- 68
- 120
0
votes
0 answers
Selenium IE webdriver's getCurrentUrl() leaves out the part of url after the hash
Selenium IE webdriver's getCurrentUrl() leaves out the part of url after the hash. For example, if the current url on the page is https://hostname/some/thing/here#something/after/hash , then the driver.getCurrentUrl() with IE just returns…

Girish
- 1,981
- 3
- 17
- 18
0
votes
1 answer
JavascriptMVC: how do I invoke the Controller's history methods?
JMVC has a History plugin that lets you interact the URL's hash fragment. For example, you can change the #hash part of the URL to make certain actions inside your app bookmarkable, and allow people to navigate using the browser's back button.…

Dean Moses
- 2,372
- 2
- 24
- 36
0
votes
1 answer
URI Fragment identifier to scroll to an element that is generated with JavaScript
I generate HTML with JavaScript code when the page loads. The problem is when using URI fragments, like http://example.com/index.html#special-id, the browser doesn't automatically scroll to the element with the id special-id. At least that doesn't…

at.
- 50,922
- 104
- 292
- 461
0
votes
0 answers
Navigating to a fragment changes URL unexpectedly
I have a url that looks like:
localhost:8080/some-resource/id
And a link that looks like:
Section
I would have expected that clicking this link would result in a url that looks like…

niftygrifty
- 3,452
- 2
- 28
- 49
0
votes
1 answer
Jetty 9 removes URI Fragments
I have a WebApplication that I want to secure with the security-constraint in the web.xml.
Here the loginConfig from the web.xml
FORM
MyUserRealm
…