Is it possible to link to a TYPO3 subpage with a specific UID using a simple HTML href-tag in the backend? I want to set a link to a subpage but I am not sure if I have to use Typoscript to do so. And if I have to: Is it possible to add my own Typoscript to the page without having administrative rights for the TYPO3 backend?
UPDATE: Did some more research and realized that another work-around might work: setting a href which points to an div element (and in my case a subpage) of a page; by that approach I would be able to 'jump' to a specific subpage by clicking on the respective link.
Might be a simple question but I would be glad about simple answers. Thanks!
<a href="/index.php?id=42">this is a link</a>
. But be aware that this breaks all sorts of functionality: It won't respect the current language, page type and stuff like that. Also be aware that this breaks if you put your page in a subfolder. Best thing to do is what @Michael said. - Jostsubpage
you mean content element). Just use the id of as a hash, prefixed withc
. Likeindex.php?id=42#c132
. Of course, you can also create such links with the RTE. Instead of clicking on a page name in the popup, click on the little red arrow next to it, then you can choose from the of content elements on this page. - Michael