mod rewrite regex
- by bbutle01
The plan is to take domain.com/chat2/roomnumber and redirect to domain.com/chat2/index.php?room_id=roomnumber.
Here's my code that's NOT workin:
RewriteEngine on
RewriteRule ^/chat2/([a-z0-9_-]+)/$ /index.php?room_id=$1 [NC,L]
RewriteRule ^/chat2/([a-z0-9_-]+)$ /index.php?room_id=$1 [NC,L]
I get sent to the 404 page.
I'm…