skip to Main Content

Apache mod_rewrite adding anchor to query string

I'm trying to add an anchor to an URL with a query string. The original URL is https://example.com/foo?query=123 It should redirect to https://example.com/foo?query=123#anchor These are my Rules in the .htaccess file: RewriteCond %{REQUEST_URI} ^/foo$ RewriteCond %{QUERY_STRING} ^query=[a-zA-Z0-9s]*$ RewriteRule (.*) /foo?%{QUERY_STRING}#anchor…

VIEW QUESTION
Back To Top
Search