Goblinart
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: All links on subfolder blog redirect to rootI fixed this by placing a different .htaccess in each blog subfolder.
Forum: Fixing WordPress
In reply to: Wrong multisite Network Admin linksSorry, that was an old .htaccess. What I have in goblinart.pl/mps/ is
RewriteEngine On RewriteBase /mps/ 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).*) home/abs/k00/mayday/.homepage/blog/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ home/abs/k00/mayday/.homepage/blog/$2 [L] RewriteRule . index.php [L]exactly as instructed by WP
Forum: Fixing WordPress
In reply to: Integrating into an exisitng website- up to date?Alright, everything seems to be working fine, many thanks for your help, PV 🙂
I’m planning on running multiple blogs (goblinart.pl/mps/, goblinart.pl/vg/, goblinart.pl/prv/ and so on), is using Multisite the most efficient way to do it? Or should I just put posts in categories and edit the loops to only display specific categories?
Forum: Fixing WordPress
In reply to: Integrating into an exisitng website- up to date?Yeah, it turned out what I needed was ‘./mps/blog…’ instead (wouldn’t work without the dot).
All seems to be working nice! http://goblinart.pl/mps/
Is there an easy way to make it so a different loop is used depending on what is being requested? (single page, main page, archives, etc.) as described in The Loop in Action?
Forum: Fixing WordPress
In reply to: Integrating into an exisitng website- up to date?Thanks for the response, got it working!
EDIT: Nevermind, forgot a dot -_-