View Single Post
Old 04-19-2005, 08:18 AM   #7 (permalink)
WhatiFind
Inactive
 
WhatiFind's Avatar
 
Join Date: 03-12-05
Posts: 265
iTrader: 0 / 0%
WhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of lightWhatiFind is a glorious beacon of light
Try using a mod_rewrite module into .htaccess. This forces the server to create static links instead of dynamic ones, ./?page=something could look like /something.php or anything else.
You could try something like this
Code:
RewriteEngine on RewriteRule ^index([0-9]+)\.php$ /?page=$1 [L]
WhatiFind is offline   Reply With Quote