Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
842 views
in Q2A Core by

Hi,

I have a little problem with the urls sent in notification emails. The email gets sent fine and I can see the url correctly within them, how ever when I click the url I'm taken to the question page only.

I can see within the email;

/2440/to-be-or-not-to-be?show=2458#a2458

but, when I click the url and go to my website I can only see in the address bar;

/2440/to-be-or-not-to-be?show=2458

Could it be redirectly somehow?

Here's my .htaccess

DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
 
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
 
</IfModule>
Q2A version: 1.6.2

1 Answer

+2 votes
by
selected by
 
Best answer

Just a question : are you sure that you have that url inside the email body ?

if, inside your email, you move the mouse over the link above and right-click , and you click on the context menu item "copy link location", and after you paste it somewhere (notepad or browser address bar), do you have the url with the # part ?

I ask it to you since I do not think that the fragments (# part of the url) are sent to the server, since they should be  "commands" for the browser if I'm not wrong.

So the # part of the url should not arrive to Apache's mod-rewrite ....

by
yes, strange a?
by
Wow, well done!! just tested using webmail and it works so, got to be problem with Windows Mail, thanks for the help
by
great !!! change email client :-)
by
+1 for nice support of maxj
...