How should permalinks be set up for pod pages to work?

1

How should my permalink structure be set up so that my pod pages work? ('slug')?

asked Aug 2 '11 at 8:36

redconservatory

77

add comment
enter at least 15 characters

4 Answers

0

/%year%/%monthnum%/%postname%/ works for me. I think any non-numeric structure that includes %postname% will work.

answered Aug 2 '11 at 9:02

chris.pilko

889

add comment
enter at least 15 characters
0

That helped, definitely need to include %postname%.

I am on Snow Leopard running a basic install of apache. For each folder in my /Sites/ folder where I am running wordpress I need to add this .htaccess file:

    # Exclude the file upload and WP CRON scripts from authentication
    <FilesMatch "(async-upload\.php|wp-cron\.php|xmlrpc\.php)$">
        Satisfy Any
        Order allow,deny
        Allow from all
        Deny from none
    </FilesMatch>
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>

# END WordPress

replace /wordpress/ with the name of your wordpress installation.

answered Aug 3 '11 at 5:10

redconservatory

77

add comment
enter at least 15 characters
0

You should only need that .htaccess file in your root. If you are running on a local dev machine, you only need to have an .htaccess in your web root. On a public site, you should have one per directory, but only to restrict browsing of those directories by unauthorized users.

answered Aug 3 '11 at 6:34

chris.pilko

889

add comment
enter at least 15 characters
0

I'm currently having '/notes/%post_id%' structure, and everything works fine. AFAIK all you need is just to setup permalinks once with any structure, everything worked fine for me after i've finished the installation - maybe the problem is somewhere else.

answered Aug 3 '11 at 8:22

Fike

208

add comment
enter at least 15 characters