Knowledgebase
How do I make NewsPro compatible with CDSEO Pro?
Posted by Nick Poindexter on 04 March 2010 04:26 PM
|
|
When using NewsPro and CDSEO Pro together the .htaccess code of each mod needs to be merged together. Open your .htaccess file containing the CDSEO rewrites provided by the CDSEO Pro installation, and: FIND: RewriteEngine on AFTER add: # NEWSPRO RULES RewriteRule ^All-News-view.html$ newspro.php?current=cat [L] RewriteRule ^(.*)-nid-([0-9]*).html$ newspro.php?current=view&nid=$2 [L] RewriteRule ^(.*)-rid-([0-9]*).html$ newspro.php?current=viewrss&rssid=$2 [L] RewriteRule ^(.*)-rid-([0-9]*)-([0-9]*).html$ newspro.php?current=viewrss&rssid=$2&linkid=$3 [L] # END NEWSPRO RULES | |
|
Comments (0)