Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Order CreatedURL TitleNavigation TitlePage TitleFriendly URL
1Contact
Contactcontact.htm
2
Contact
contact-1.htm
3
Contact usContactcontact-us.htm
4

Contactcontact-2.htm
5Contact
Contacting GXcontact-3.htm


Back to top


...


Panel
borderColor#0081C0
titleColor#0081C0

The following applies to XperienCentral versions R36 and higher.

Friendly URL Conflict Indicator

When you create a new page or content item, XperienCentral assigns a friendly URL to it based on the rules explained in the previous sections. For each new page/content item you create, a check is made to see whether the requested friendly URL is available. If the friendly URL that the page/content item wants is available, it is granted. If, however, the friendly URL is already in use, a message will appear in the "Properties of all versions" section of the SEO tab in Content Item Properties indicating that the desired friendly URL is already in use and that a new friendly URL has been assigned to the current page/item. For example, the friendly URL title 'Contact' is already claimed by another page or content item. When the page below entitled "Contact" is created, an indicator that the friendly URL is already claimed displays above the page

...

When the friendly URL is blank (extensionless), it can no longer be redirected. Use the following code to run XperienCentral without a friendly URL extension.

...

Code Block
themeEclipse
DirectoryIndex index.html 

<IfModule mod_rewrite.c>
   RewriteEngine On

   #Optional to make sure that old urls are redirected to XC properly
   RewriteRule ^(.*).htm$ $1 [R=301,L]

   RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
   RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_URI} !^/web/ 
   RewriteCond %{REQUEST_URI} !^/systemlogs       
 
   RewriteCond %{REQUEST_URI} !^/static
   RewriteCond %{REQUEST_URI} !^/upload
   RewriteCond %{REQUEST_URI} !^/upload_mm
  RewriteRule ^(.*)$ /web/seo$1 [PT,L]   
</IfModule>

...