I’m trying to get WordPress permalinks to work nicely with Pods and running into trouble.
Pods 1.8.1 + WP 2.9.1
Only other plugins are Akisment and Pods UI
If I turn off WP permalinks (set to the default), the /state and /state/* Pods pages work just fine : ) When set to default, my .htaccess looks like:
<pre><IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
BEGIN WordPress
END WordPress</pre>
When I turn on permalinks regardless of structure, but always using /%postname%/ as recommended – the Pod pages stop working correctly. WP pages work fine. The Pod pages do not throw a 404 and display the proper title, it’s just that the pod content is not shown. I can verify that the pods.php template is being used from the comments output.
.htaccess looks like this at that point
<pre>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
END WordPress
</pre>
Any thoughts greatly appreciated!