Changes between Initial Version and Version 1 of Ticket #31664
- Timestamp:
- 03/17/2015 09:11:16 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31664 – Description
initial v1 15 15 - Copy andPaste "Network setup" from Dashboard. Here is the "problem", the .htaccess here shows: 16 16 17 {{{ 17 18 RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) D:/Programs/xampp/htdocs/H4Net/$2 [L] 18 19 RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ D:/Programs/xampp/htdocs/H4Net/$2 [L] 20 }}} 19 21 20 22 After a long researching, I have found an advice from a long time ago and applied. The advise where to change these 2 lines to: 21 23 {{{ 22 24 RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) /H4Net/$2 [L] 23 25 RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ /H4Net/$2 [L] 24 26 }}} 25 27 After this change it works. 26 28 … … 30 32 - Copy andPaste "Network setup" from Dashboard. Here is "again" the "problem", the .htaccess here shows: 31 33 34 {{{ 32 35 RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) sites/MYURL/$2 [L] 33 36 RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ sites/MYURL/$2 [L] 37 }}} 34 38 35 39 The solution I found is to change it to: 36 40 {{{ 37 41 RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] 38 42 RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] 39 43 }}} 40 44 ================================================ 41 45