Jump to content

Bizarre Issue with mod_rewrite or something else


Recommended Posts

I'm having a bizarre issue with Mod_Rewrite.

 

When I type mydomain.com/signup into my browser it's going to signup.php not index.php?signup as expected.

 

It seems my server is first looking for a file that has file name of signup. I noticed this earlier too because I have a file called signup.css, and it was loading that when I went to /signup; but didn't think much of it at the time.

 

RewriteEngine on
RewriteBase /

RewriteRule ^signup$ index.php?signup
RewriteRule ^signup/(?:$|\?(?:.+)) index.php?signup$1 [QSA]
RewriteRule ^activation/(?:$|\?(?:.+)) activate.php?$1 [QSA]

AddType x-mapp-php6 .php 

 

Any ideas on what's happening here?

Link to comment
Share on other sites

not tested

 

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?([a-zA-Z0-9-]+)(?:/(.*))?$ index.php?$1

 

I unfortunately only want to rewrite specific URLs so something that's does everything won't work. Which I'm not mistaken that does?

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.