RewriteRule [a-z] problem?

Discussion in 'Programming' started by Adulu, Mar 10, 2010.

  1. #1
    RewriteRule ^([a-z]+)/$
    this code is mine who copy from internet.
    [a-z] is mean lowercase.
    but my site that there are many blend letters as (Abc or Abc123A or 123 or 123a123A)
    apparently, [a-z] can't use on my site

    how to resolve this?

    thank you so much.
     
    Adulu, Mar 10, 2010 IP
  2. koko5

    koko5 Active Member

    Messages:
    394
    Likes Received:
    14
    Best Answers:
    1
    Trophy Points:
    70
    #2
    Hi,

    try
    RewriteRule ^([a-zA-Z0-9]+)/$
    Code (markup):
    Regards :)
     
    koko5, Mar 11, 2010 IP