Redirect from section

Hello

How can i redirect a page section? e.g currently using Example Domain and i want to redirect the about link to example.com/about

This is what i’m getting:

I am not sure what character to use?

Can anybody help?
Kaj

I don’t really think this can be done, as Example Domain isn’t a “link” for the section. It first goes to the example.com and then moves to the section. You’ll need to change the source links that go to /#about and make them go to the correct page (Assuming you have that kind of control over them)

//I might be totally wrong here, but I just wanted to show what I think of this…

Hi @Kajv, I will provide another take on this.

http://example.com/about is a page.
http://example.com/ is a page.
http://example.com/#about is a page with an anchor;
The server only sees http://example.com/ in that example.

The server sees pages (URL)'s and therefore can process a redirect. The server does not see anchor links (the anchor is never sent to the server). Therefore it can’t redirect them.

TL;DR - No.

2 Likes