possble htaccess problem

Status
Not open for further replies.

Dhryn

New Member
Prime Account
Messages
16
Reaction score
0
Points
1
I have recently updated my site, with that changed my htaccess file. My site runs correctly until I enter www.dhryn.com/web-development/ and then it throws a 404 error

The htaccess code runs fine on my tester server at home.

The htaccess code I am using is:

RewriteRule ^(game|web)(?:-|_)(?:(?:dev|development)/?)(?:([a-zA-Z0-9_]+)/?)?(?:([a-zA-Z0-9_]+)/?)?(?:([a-zA-Z0-9_]+)/?)?$ $1dev.php?a=$2&b=$3&c=$4

I have tried a much simplified version which still didn't work. I have also tried accessing the php page directly and it runs fine.

Any help would be great :D
 

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
Make sure you have:

Code:
RewriteEngine On
RewriteBase /

If you add those, it *should* work.
 

Dhryn

New Member
Prime Account
Messages
16
Reaction score
0
Points
1
Fantastic :biggrin:

Thank you so much, it is all working nicely. Such a silly mstake on my behalf :redface:
 
Status
Not open for further replies.
Top