Forum Moderators: open
My question is about the base tag; Say we got a website with the following structure:
http://www.example.com/
http://www.example.com/topic1/
http://www.example.com/topic1/page1
http://www.example.com/topic1/page2
http://www.example.com/topic6/
a) Should the base tag be the same for all of the above pages as:
<base href="http://www.example.com/">
b) Or should it be
<base href="http://www.example.com/">
<base href="http://www.example.com/topic1/">
<base href="http://www.example.com/topic1/page1">
<base href="http://www.example.com/topic1/page2">
<base href="http://www.example.com/topic6/">
respectively and unique to each page? (I am also using multiviews for content negotiation, hence the omitted extensions for the .html files)
Regards