lost my /folders after wordpress install

Depending on how you installed WP may have removed them.

Can you actually check the directory structure of the site?
 
They are still in my FTP, the folders

just cant access them via a webpage like i used to be able too

i want to be able to create a folder in FTP and put some files in it that i can get to via the web , outside of the wordpress structure
 
Last edited:
Did you install wordpress to the root / of the webspace?

It probably introduced some htaccess rules.
 
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