Title: LiveKnut's Replies | WordPress.org

---

# LiveKnut

  [  ](https://wordpress.org/support/users/liveknut/)

 *   [Profile](https://wordpress.org/support/users/liveknut/)
 *   [Topics Started](https://wordpress.org/support/users/liveknut/topics/)
 *   [Replies Created](https://wordpress.org/support/users/liveknut/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/liveknut/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/liveknut/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/liveknut/engagements/)
 *   [Favorites](https://wordpress.org/support/users/liveknut/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Network Admin linked to wrong folder](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/)
 *  Thread Starter [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/#post-4437318)
 * OK, found a solution. The issue was in the RewriteRule of .htaccess file in the
   flog Folder (not the WP Folder). It was pretty time consuming to get the regular
   expressions understood 😉
 * Now the .htaccess is as below:
 * If anyone can have a look at the .htaccess and at the remaining questions below,
   that would be great!
 * # BEGIN WordPress
    # /Knuts-Segel-Touren/ ist the blog folder (not the WP folder)
   RewriteEngine On RewriteBase /Knuts-Segel-Touren/ RewriteRule ^index\.php$ – [
   L]
 * # Add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,
   L]
 * # Do nothing if file or folder is matched
    RewriteCond %{REQUEST_FILENAME} -f[
   OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ – [L]
 * # Changed $1 into ../_wp_s6ibl0g/ and it works fine. But the reason why network
   is
    # the only one referring to the blog folder /Knuts-Segel-Touren/ is quite
   unclear. RewriteRule ^(wp-(content|admin|includes).*) ../_wp_s6ibl0g/$1 [L] RewriteRule
   ^(.*\.php)$ wp/$1 [L] RewriteRule . index.php [L] # END WordPress
 * Remaining questions:
    1. Why is a trailing slash to /wp-admin necessary? 2. Why
   are the other WP .php files are catched out of the WP Folder ../_wp_s6ibl0g/ 
   and the network .php files not?
 * Within db there is:
    siteurl = [http://www.diemel-net.de/_wp_s6ibl0g](http://www.diemel-net.de/_wp_s6ibl0g)(
   my wp folder) home = [http://www.diemel-net.de/Knuts-Segel-Touren](http://www.diemel-net.de/Knuts-Segel-Touren)(
   my blog folder)
 * 3. Why hasn’t this being set up during the installation routine properly? Did
   I made a mistake??
 * 4. What are the last 2 rules good for?
    RewriteRule ^(.*\.php)$ wp/$1 [L] (Folder
   wp will not exist) RewriteRule . index.php [L] (all else is linked to index.php?!?)
 * 5. Are there any issues likely when I proceed adding new sites and is there anything
   I should take care of?
 * **Merry Christmas to all of you.**
    LiveKnut
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Network Admin linked to wrong folder](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/)
 *  Thread Starter [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/#post-4437300)
 * OK, ich checked several blog entries for this but I didn’t find a solution yet.
   But I recognized that the .htaccess plays an important role.
 * Here the .htaccess in the blog Folder:
    ###########################################################
   protect wpconfig.php <files wp-config.php> Order deny,allow deny from all </files
   >
 * # BEGIN WordPress
 * RewriteEngine On
    RewriteBase /Knuts-Segel-Touren/ RewriteRule ^index\.php$ –[
   L]
 * # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$
   $1wp-admin/ [R=301,L]
 * RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d RewriteRule
   ^ – [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) homepages/
   14/d71175075/htdocs/_wp_s6ibl0g/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)
   $ homepages/14/d71175075/htdocs/_wp_s6ibl0g/$2 [L] RewriteRule . index.php [L]
 * # END WordPress
    ###########################################################
 * Here the .htaccess in the wp Folder:
    ############################################################
   protect wpconfig.php <files wp-config.php> Order deny,allow deny from all </files
   >
 * # BEGIN WordPress
 * # END WordPress
    ###########################################################
 * Appreciate any help.
    Regards, Knut
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Network Admin linked to wrong folder](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/)
 *  Thread Starter [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/#post-4437297)
 * Hmmm… checked also the db table entries in WP options table. Site-URL und Domain-
   URL are set correctly (from my perspective).
 * Regards,
    Knut
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Network Admin linked to wrong folder](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/)
 *  Thread Starter [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/network-admin-linked-to-wrong-folder/#post-4437295)
 * Thanks a lot for your answer.
 * Problem changed slightly. I forgot to made the directory blogs.dir during the
   migration to multisite. Now it is possible to set up a new blog but ONLY IF I
   CHANGE THE URL which shows to the blog directory and not to the wp Directory (
   see above).
 * Your link is not appropriate for me since I have not changed any locations, neither
   domains, nor servers. It is everything at the same place.
 * Any further ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Add Link to Facebook] Error Message on Homepage](https://wordpress.org/support/topic/error-message-on-homepage-1/)
 *  Thread Starter [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/error-message-on-homepage-1/#post-4008138)
 * Dear Marcel,
 * I am now on vacation without Laptop. I am not able to check it out bevor 2 Sept.
   I am very sorry.
 * Regards Knut
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Double Installation?!?](https://wordpress.org/support/topic/double-installation/)
 *  Thread Starter [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/double-installation/#post-3126645)
 * Thanks so much for the quick answer.
    I’ve checked it out. In wordpress/langues/
   is de_DE.mo, so the correct language file is placed there. Within the installation
   file wp-config.php “define(‘WPLANG’, ‘de_DE’);” is integrated, too.
 * It seems that on this side everything is correct.
    Any other hints?
 * Regards,
    LiveKnut
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Postie] [Plugin: Postie] All Emails Being Treated As Possible XSS Attacks & Blocked](https://wordpress.org/support/topic/plugin-postie-all-emails-being-treated-as-possible-xss-attacks-blocked/)
 *  [LiveKnut](https://wordpress.org/support/users/liveknut/)
 * (@liveknut)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-postie-all-emails-being-treated-as-possible-xss-attacks-blocked/page/2/#post-2969160)
 * Hmmm… Same to me. Only TEXT mails work fine.
    Have installed version 1.4.4. POP3
   SSL neither working
 * Any news from someone to this?
 * Regards,
    Knut

Viewing 7 replies - 1 through 7 (of 7 total)