Jump to content

mod_rewrite issues


Wright

Recommended Posts

Using Apache 2.2. If I write the rule:

 

RewriteRule ^register/?$ user_register.php

 

It works just fine, but if I write:

 

RewriteRule ^register/?$ register.php

 

It just says the page doesn't exist. Why I can't put same name? :S

 

Another example:

 

RewriteRule ^validate/(\w+)/?$ email_validate.php?key=$1 works

but:

RewriteRule ^validate/(\w+)/?$ validate.php?key=$1

doesn't work, and I don't have a clue why.

 

Any help would be appreciated!

 

EDIT: Jesus, I just noticed there's a childboard only for THIS! Can a mod please move it? Sorry!

Link to comment
Share on other sites

I'm not sure I understand your question here.

 

^register/?$ user_register.php

 

...will redirect requests to the server for http://www.yourdomain.com/register/ (with or without the trailing slash) to http://www.yourdomain.com/user_register.php. Whereas...

 

RewriteRule ^register/?$ register.php

 

...will redirect requests to the server for http://www.yourdomain.com/register/ (with or without the trailing slash) to http://www.yourdomain.com/register.php. Providing the respective file exists there should be no issues.

Link to comment
Share on other sites

I'm not sure I understand your question here.

 

^register/?$ user_register.php

 

...will redirect requests to the server for http://www.yourdomain.com/register/ (with or without the trailing slash) to http://www.yourdomain.com/user_register.php. Whereas...

 

RewriteRule ^register/?$ register.php

 

...will redirect requests to the server for http://www.yourdomain.com/register/ (with or without the trailing slash) to http://www.yourdomain.com/register.php. Providing the respective file exists there should be no issues.

 

Yes, the first code works, but second one doesn't. Any reasons why? I'm writting these rules through .htaccess. It just says page is not found.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.