Test /
SearchBoxInclude
A small include to use in testing SearchBoxArgs
- Sets a page's title to be something other than the page's name. The title text can contain apostrophes and other special characters. If there are multiple titles in a page, the last one encountered wins (see also
$EnablePageTitlePriority
about how to change it). ,
- Override the default table of contents settings. This directive requires a corresponding configuration of the wiki, see Table of contents Basic automatic table of contents and numbered headings
- Sets a page's summary. Used in some of the default PageList Templates. Note, this is a PageTextVariable and unlike core page directives it is case sensitive.
Can I get to return a "moved permanently" (HTTP 301) status code?
Use .
Is there any way to prevent the "redirected from" message from showing at the top of the target page when I use ?
From version 2.2.1 on, set in config.php
and in the page $EnableRedirectQuiet
=1; for a quiet redirect.
Is there any method for redirecting to the equivalent page in a different group, i.e. from BadGroup?/thispage => GoodGroup?/thispage using similar markup to (:redirect Goodgroup.{Name}:)?
works if you want to put it in one page.
If you want it to work for the entire group, put
into Badgroup.GroupHeader?
- however, that only works with pages that really exist in Goodgroup
; if you visit a page in Badgroup
without a corresponding page of the same name in Goodgroup
, instead of being redirected to a nonexistant page, you get the redirect Directive at the top of the page.
With
in Badgroup.GroupHeader?
you get redirected to Goodgroup.Name
if it exists, otherwise you get Badgroup.Name
without the bit of code displayed.
How can a wiki enable linebreaks by default, i.e. without having the directive in a page or in a GroupHeader?
Add to config.php
such a line:$HTMLPNewline = '<br/>';