I am managing an association's site using typo 3 version 4.5.30. The site has the config setup for [baseURL] = http://www.afj-japon.org/ in its template. Everything works fine, but I need ONE page only to have the URLs written in full in the code. Right now the page code indicates and the URLs are written in full for the redirections to other pages, but as for the images. I need to have the code to actually be as How can I set this to affect only this one page and not the whole site ? Thank you in advance for your help. Regards, Gilles
Full URL for one specific page content only in Typo3 while the rest follows the base URL constant
611 views Asked by user3093957 At
1
There are 1 answers
Related Questions in URL
- how to prepend www if the url string does not has www?
- Fetching URL vars into form and submitting to other page
- index.php url need to hide from homepage of php website
- Iframe not passing url parameters
- Object not found! The requested URL was not found on this server. PHP file not being accessed
- How can hide url value in php
- How parse makeHttpRequest with friendly url?
- Import .rda from URL into R
- Upload info that appear when share web link on Facebook
- Hiding param of struts.xml values in Struts 2
Related Questions in TYPOSCRIPT
- TYPO3 6.2 performance, Typoscript Select, Typoscript Cache
- Typoscript add class to the first element using stdWrap
- typolink: set page type for internal links on condition
- TYPO3 Menu: only first level is displayed
- How can I setup TypoScript in TYPO3 6.2.11?
- userFunc has no effect in TYPO3 4.5
- Front End User Registration (sr_feuser_register): Required RSA auth backend not available
- How To configure Language menu in Typo3 CMS
- TYPO3 - canonical tag
- Typo3 onepage include subpages with their own templates
Related Questions in RADIX
- How to convert a number to base 24 and convert it back?
- Converting to high bases
- Converting User Chosen Base to Base 10 - MASM
- Understanding base class initialization
- Convert from base 10 to base 3
- Write a program in C that takes a natural number n and base b and outputs digits of n in b
- Write a program in C that will take a base and n digits and will output a decimal number represented by those digits
- Write a program in C that outputs the smallest natural number greater or equal to n whose all digits are even
- Radix sort Java using 2 dimensional array recursive
- Getting specific method from inherited class
Related Questions in TYPO3-4.5
- userFunc has no effect in TYPO3 4.5
- Is it safe to truncate these table (cache_hash, cache_pages, index_rel, ...) in Typo3 4.4 / 4.5
- Full URL for one specific page content only in Typo3 while the rest follows the base URL constant
- spamProtectEmailAddresses Typo3 deactivate only in one specific page
- Extbase add calculated field in query/repository
- How to keep TYPO3's RTE from adding an empty line before <ul>s
- What is the difference between disable a page and hide the page in the meu into Typo3 CMS?
- Extbase addAdditionalHeaderData(...) in actioncontroller, include same CSS twice
- Typo3: The requested page didn't have a proper connection to the tree-root
- Copy a WHOLE Typo3 Website to new domain (and upgrade from 4.5 to 6.2)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
if I understand the question right you want to have absolute URLs on one certain page, right?
TYPO3 comes with a setting called config.absRefPrefix. If said one page has no child-pages you can set up an extension template on that page and have this line in there: config.absRefPrefix = http://www.afj-japon.org/
If the page has child-pages underneath it, you will have to use a condition in the ID of that page.
Mind that every condition has to be evaluated prior to caching so having a lot of conditions might make your website slower.