[LINKS] doFilterInternal,latestVersion
diff --git a/src/site/assets/.htaccess b/src/site/assets/.htaccess
index 04059f5..8917f8e 100644
--- a/src/site/assets/.htaccess
+++ b/src/site/assets/.htaccess
@@ -51,5 +51,5 @@
 RedirectMatch /static/1.0.0-incubating(.*) /static/current$1
 
 # latest
-RedirectMatch /static/current(.*) /static/1.9.0$1
-RedirectMatch /static/latest(.*) /static/1.9.0$1
+RedirectMatch /static/current(.*) /static/1.9.1$1
+RedirectMatch /static/latest(.*) /static/1.9.1$1
diff --git a/src/site/content/testing.adoc b/src/site/content/testing.adoc
index 0e75ffe..d6d2a72 100644
--- a/src/site/content/testing.adoc
+++ b/src/site/content/testing.adoc
@@ -21,7 +21,7 @@
 . The `Subject` instance must be _bound_ to the currently executing thread.
 . After the thread is finished executing (or if the thread's execution results in a `Throwable`), the `Subject` must be _unbound_ to ensure that the thread remains 'clean' in any thread-pooled environment.
 
-Shiro has architectural components that perform this bind/unbind logic automatically for a running application. For example, in a web application, the root Shiro Filter performs this logic when link:http://shiro.apache.org/static/current/apidocs/org/apache/shiro/web/servlet/AbstractShiroFilter.html#doFilterInternal-javax.servlet.ServletRequest-javax.servlet.ServletResponse-javax.servlet.FilterChain-[filtering a request]. But as test environments and frameworks differ, we need to perform this bind/unbind logic ourselves for our chosen test framework.
+Shiro has architectural components that perform this bind/unbind logic automatically for a running application. For example, in a web application, the root Shiro Filter performs this logic when link:++http://shiro.apache.org/static/current/apidocs/org/apache/shiro/web/servlet/AbstractShiroFilter.html#doFilterInternal(javax.servlet.ServletRequest,javax.servlet.ServletResponse,javax.servlet.FilterChain)++[filtering a request]. But as test environments and frameworks differ, we need to perform this bind/unbind logic ourselves for our chosen test framework.
 
 [#Testing-TestSetup]
 == Test Setup