1
By default this plugin uses friendly URLs, but you can enhance them modifying the included settings. The default scheme for these URLs is:
  • Page URL Scheme: `page-{url}`
  • Category URL Scheme: `category-{url}`

The default code to add to your `.htaccess` file is the following:
```
# OUGC Pages Category URL:
RewriteRule ^category\-([^./]+)$ pages.php?category=$1 [L,QSA,NC]

# OUGC Pages Page URL:
RewriteRule ^page\-([^./]+)$ pages.php?page=$1 [L,QSA,NC]
```
1