Permalinks not working on ADS only
Hey guys.
So we setup the theme fine, and activated permalinks using /%postname%/
Most of the site is working fine, except the actual ADS, which is funny.
example.com/add-new/ ... fine
example.com/ads/blue-car-for-sale/ ... 404 error
The ADS show up fine with the default permalink structure. And before anyone asks, yes, this is an English website with English post titles.
Please help us, thanks. Our .htaccess file is setup fine and all file permissions are fine.
P.S. can we alter the permalinks to be simply /ad/ instead of /ads/ ... just a pet peeve, like when companies host their "forum" at the URL "forums" lol. It is only one ad, after all.
Cheers ~
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress