How to create a Page node

How to create a Page node

Hmmm... I am not that good with rewrites and thought most of these were standard.

Do you see anything that would cause it?

Code:
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt$

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.avnirvana.com/$1 [R,L]

ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 405 default
ErrorDocument 406 default
ErrorDocument 500 default
ErrorDocument 501 default
ErrorDocument 503 default

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots) - [NC,L]
    RewriteRule ^.*$ index.php [NC,L]
</IfModule>
 
Okay... so this is strange... we have two page nodes that we added on. One is out "About Us" page and the links work just fine and dandy, as you would normally install them for HTML.

HOWEVER, on the Privacy Policy page, which is setup and designed the exact same way other than the wording, I had to remove all of the quotation marks in the "a href" URL's... basically all quotation marks between the <a> attribute had to go... now it works fine.

It certainly seems odd that one allows them and the other doesn't, and they code is the same other than the words.
 
1. To add a sidebar use <xen:sidebar>sidebar content</xen:sidebar>
2. This is user specific - there is very little point in me giving you the contents of my home page which is about F1.
3. Navigation, header and footer are part of the overall template so aren't required.

Literally all you need to do is enter the HTML, CSS and JavaScript to build your page.

If you want to see how a typical page is built, right click in your browser and select View page source.
Try it on the Page here on XenForo.com.
Browse to this URL: http://xenforo.com/community/pages/example-page/
Right click and view source.
Everything between <article> and </article> is the code which has been entered to create the page. If there is a sidebar, everything between <aside> and </aside>.

As I have already said several times, me posting code for my site will be of absolutely no use at all to anyone else.
What if instead of /page/ I want to add link it to /help/ ?
 
Back
Top Bottom