Quote:
Originally Posted by Publisher Bucks
It’s supposed to rewrite from link.php?id=XX
To /links/some-link-name
There’s a ton of sites including Sitepoint threads that say this should work to achieve that.
|
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ links.php?id=$1 [QSA,L]