Forum Moderators: phranque
Previously the shortfrom URL redirection was simply:
h-t-t-p://mysite/copyright
and the necessary .htaccess command line thus:
RewriteRule ^copyright$ /html/copyright.html [R]
Concatenated stuff will appear on admin.html with a browser command line of the form:
h-t-t-p://mysite/html/admin.html#copyright
However none of the following .htaccess lines do the business:
RewriteRule ^copyright$ /html/admin.html#copyright [R]
RewriteRule ^copyright$ /html/admin.html\#copyright [R]
RewriteRule ^copyright$ /html/admin.html%23copyright [R]
RewriteRule ^copyright$ /html/admin.html\%23copyright [R]
Would you be able to offer me some of the right sort of magic please?
best wishes, Robert