I'm having a weird issue...something to do with permalinks vs. .htaccess: here is what's happening:
( I hope this is not confusing for anyone...)
Friendly URLS are ON
Here is the .htaccess setup: (suggested setup as shown in admin area)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
--> I start with this friendly URL setup,
Listing URL: {CATEGORIES}/{ITEM_ID}-{ITEM_TITLE}
Page URL: {PAGE_SLUG}
Category URL: {CATEGORIES}
BUT THEN I HAVE ISSUES:
With this setup, none of the main categories links listed on the main page are working, only the sub-categories, main categories show "Page Not Found"
--> In order to fix the main category issue, I alter the rules again (BELOW)
Listing URL: {CATEGORIES}/{ITEM_ID}-{ITEM_TITLE}
Page URL: {PAGE_SLUG}-
Category URL: {CATEGORIES}
BUT THEN I HAVE ISSUES:
** With this setup, the main categories work, everything works, but I am left with a "-" trailing the URL of the pages
FOR EXAMPLE "
https://www.MYURL.com/terms-of-use-"
I have even tried this with the "-p" at the end of the rule, which shows up as the url with a "-p" trailing it
--> In order for everything to work I then use the default suggested rules:
Listing URL: {CATEGORIES}/{ITEM_ID}-{ITEM_TITLE}
Page URL: {PAGE_SLUG}-p{PAGE_ID}
Category URL: {CATEGORIES}
BUT THEN I HAVE ISSUES:
** With this setup everything looks good, but the page URLs contain the page ID which I do not want, I think it looks dumb.
FOR EXAMPLE: "
https://www.MYURL.com/terms-of-use-p27 (this SHOULD BE "..../terms-of-use")
Now I have Google'd the hell out of this for three days and I still can't figure it out.
Any help would be appreciated.
Thanks
Nick