Wordpress multi user - create a static folder for individual user

ACiiiD

New Member
I've several blog hosting under Wordpress Multisite

http:// yourdomain.com/
http:// yourdomain.com/user1/
http:// yourdomain.com/user2/
The Wordpress root is installed under /var/host/yourdomain.com/public/However, i would like to create a static html folder to include some static html files

http:// yourdomain.com/user1/STATIC_FOLDER/css/ *.*
http:// yourdomain.com/user1/STATIC_FOLDER/images/ *.*
http:// yourdomain.com/user1/STATIC_FOLDER/index.htmlI've also created a sub folders to allow user to FTP directly

/var/host/yourdomain.com/public/user1/STATIC_FOLDER/ *.*Would somebody be able to advise me on the editing of htaccess? or recommend any plugins, or workaround to enable this? appreciate any help thanks!\[code\]RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]RewriteCond %{REQUEST_FILENAME} -dRewriteRule ^ - [L]RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]RewriteRule . index.php [L]\[/code\]
 
Back
Top