Creating folders outside wordpress

Soldato
Joined
28 Sep 2003
Posts
10,387
Location
London
i am trying to create a folder on FTP , IE /images

so i can go to www.mydomain.co.uk/images and see the files via the web

however i have wordpress installed and just get 404 error when trying to view the folder

someone mentioned might be a htaccess file problem

here is mine:

this is my htaccess file, not got a clue what to change ?

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
 
Back
Top Bottom