Using something like blablabla.php?page=45 Getting page 45 is no issue. Where I'm having a problem is if I attempt to use mod_rewrite to get /page-45.html. The $_GET doesn't seem to be pulling the 45 anymore. Any suggestions? Thanks in advance.
RewriteRule (.*)fight-email-spam/page-(.*).htm[l]?$ fight-email-spam.php?page=$1 [QSA,NC] Code (markup):
Try changing it to page=$2 I think $1 will be whatever is in front of fight-email-spam page. Also make sure you have enabled mod_rewrite the module.