Rewrite problem

Discussion in 'Apache' started by Antonio, Nov 28, 2006.

  1. #1
    I am using rewrite for my site but there is a problem. When I upload a folder "abc" then enter the url/abc it shows 404 for me.

    How to disable rewrite for the folder in .htaccess :confused:
     
    Antonio, Nov 28, 2006 IP
  2. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #2
    Make something be unique in the fake URLs, like a different extention. Or post the code.
     
    Nintendo, Nov 28, 2006 IP
  3. Antonio

    Antonio Well-Known Member

    Messages:
    1,504
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    155
    #3
    It is wordpress rewrite

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    
    Code (markup):
    I want to upload a new folder at the root but it only shows 404 error.
     
    Antonio, Nov 28, 2006 IP
  4. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #4
    ack...wordpress. Make a post over on their support board.

    RewriteRule . /index.php [L]

    is probably doing it.
     
    Nintendo, Nov 28, 2006 IP