Any idea how i can get a Test Site up?
I tried XAMPP,InstantWordPress. I even tried a plugin called Sandbox.
Doesnt work for amateurs like me.
Try DesktopServer: http://serverpress.com/products/desktopserver/
But the issue is that you don’t have a subsite named test on your network. SO that error? Is what you’re supposed to get 🙂
I don’t have ‘test’ as a subsite, nor as post or page.
Yes. That’s the error I am supposed to get. So foolish of me.
I need to document things I have done.
Right now, I have removed Multisite. I am back to being ‘Single’.
Guess I am not technically strong to do multisite.
Realised I have to rebuild everything even if I have subfolder. So I need a better way to migrate local-live and live-local.
Thanks for the recommendation! I will try it!
I should close this thread. And thanks Mika, for sticking with me for so long.
Put this in your .htaccess
It’s works for me.
RewriteEngine On
RewriteBase /
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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]