sark9012
sark9012

Reputation: 5747

Htaccess problem

I have just created a htaccess file and entered the following

RewriteEngine on
RewriteRule ^/profile/([0-9]+)\.html /profile.php?id=$1

This is giving me a

500 Internal Server Error

Any ideas why?

Thanks

Upvotes: 0

Views: 106

Answers (1)

Book Of Zeus
Book Of Zeus

Reputation: 49885

use this in your .htaccess file

RewriteRule ^profile/([0-9]+)\.html$ /profile.php?id=$1 [NC,QSA,L]

Upvotes: 1

Related Questions