Jump to content

Regex in htaccess, folder structure?


Jessica

Recommended Posts

I have the following rules in my htaccess:

 

RewriteRule ^journals([A-Za-z0-9_/]+)$ /journals/base.php [NC]

RewriteRule ^quadoo([A-Za-z0-9_/]+)$ /quadoo/base.php [NC]

RewriteRule ^scrapbook([A-Za-z0-9_/]+)$ /scrapbook/base.php [NC]

RewriteRule ^CMS([A-Za-z0-9_/\-]+)$ /CMS/base.php [NC]

 

I wanted to simplify it, but what I tried didn't work:

 

RewriteRule ^[A-Za-z0-9_]+/([A-Za-z0-9_/\-]+)$ /$1/base.php [NC]

 

Help?

Link to comment
Share on other sites

^journals([A-Za-z0-9_/]+)$

^ ### BOL

journals ### literal

( ### Start capture

[A-Za-z0-9_/]+ ### Match one or more of any of these characters; there may not be a forward slash at all!

) ### End capture

$ ### EOL

 

^[A-Za-z0-9_]+/([A-Za-z0-9_/\-]+)$

^ ### BOL

[A-Za-z0-9_]+ ### Match one or more of any of these characters

/ ### Match a forward slash

( ### Start capture

[A-Za-z0-9_/\-]+ ### Match one or more of any of these characters

) ### End capture

$ ### EOL

Link to comment
Share on other sites

If I use:

RewriteRule ^([A-Za-z0-9_]+)/([A-Za-z0-9_/\-]+)$ /$1/base.php [NC]

None of them work.

So I added

RewriteRule ^CMS([A-Za-z0-9_/\-]+)$ /CMS/base.php [NC]

If you go to http://www.grady.us/CMS/ that works.

But if you go to http://www.grady.us/quadoo/, you'll just see the almost-empty index file, not base.php

Link to comment
Share on other sites

These are failing to match because they do not have data after the slash:

^[A-Za-z0-9_]+/([A-Za-z0-9_/\-]+)$

^ ### BOL

[A-Za-z0-9_]+ ### This is matching "CMS", for example.

/ ### This is matching the "/".

( ### Start capture

[A-Za-z0-9_/\-]+ ### This cannot match anything, therefore failing.

) ### End capture

$ ### EOL

If you do not require data after the slash, change + to *.

Link to comment
Share on other sites

Because you weren't matching two sets of data, only one. Review the first comparison I posted line by line, and go through it character by character.

 

The first pattern says "Find 'journals' then one or more characters, which could be a slash"; whereas the second says "Find one or more characters, not including the slash, then a slash, then one or more characters, which could be a slash."

 

That extra step makes all the difference.

 

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.