Isaac
Isaac

Reputation: 11

htaccess mod_rewrite problems, what's wrong with my file?

What's wrong with my .htaccess file?

RewriteEngine on
RewriteRule ^/([a-zA-Z]+)/([0-9]+)$ index.php?mode=$1&id=$2 [L]

Basically I want it to go from example.com/?mode=page&id=1 to example.com/page/1

From what I see,it's supposed to work but it doesn't...

Upvotes: 0

Views: 41

Answers (1)

zerkms
zerkms

Reputation: 255005

  1. Remove leading / from your rule
  2. Add RewriteBase / after RewriteEngine line

Upvotes: 1

Related Questions