<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>WordPress Ideas &#187; Topic: Unified subdomains and subdirectories</title>
		<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories</link>
		<description>WordPress Ideas &#187; Topic: Unified subdomains and subdirectories</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 20:38:03 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://wordpress.org/ideas/rss/topic/unified-subdomains-and-subdirectories" rel="self" type="application/rss+xml" />

		<item>
			<title>jbleep on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24617</link>
			<pubDate>Tue, 16 Apr 2013 19:30:49 +0000</pubDate>
			<dc:creator>jbleep</dc:creator>
			<guid isPermaLink="false">24617@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>Here is a "horibble example" I am pulling from something off the wall.  the point is there is syntax that will allow you to use wildcards and such.  I am on vacation, and I don't have time to research it right now/    If I can in the next day or two I will try to get you a better example.  But here is some syntax along the lines of what you want:</p>
<p>RewriteEngine On<br />
RewriteRule aw(.*)/index.htm$ xxx.php?aw$1/<br />
RewriteRule aw(.*)/index.phtml$ gys.php?aw$1/</p>
<p>This is from some code I found on a website that was using 'illegal' keyword redirects.  Where it comes from is not important.  If you Google 'rewriterule htaccess' you will find examples of how to turn the stuff before the domain (zzzz.domain.com) into a variable that you put after it like this:</p>
<p>Rewriterule (*.)mydomain.com  mydomain.com/$1</p>
<p>That would (if written correctly) take anything before mydomain and put it after the slash instead.  Again, I don't know the syntax, just the concept and that you can do it.  You can use wildcards but you can also do the specific ones you want really easily, something like:</p>
<p>Rewriterule abc.mydomain.com   mydomain.com/abc</p>
<p>You can find examples of it by googling what I said.</p>
<p>And the 301 if not what you are after.  In the syntax you have it would redirect any 301 it finds (if there was one) to the url you have entered.  This is not what you want.  You want the Rewrite as I said above with something like [R 301] after it, which will tell google that it is permanrnt.  And you don't reallly need that.  The user accessing it does not need to know it is changing.  That is something your program (including .htaccess) is handling, just like WP handles stuff without the user knowing.
</p>]]></description>
					</item>
		<item>
			<title>wordOne on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24616</link>
			<pubDate>Tue, 16 Apr 2013 17:38:48 +0000</pubDate>
			<dc:creator>wordOne</dc:creator>
			<guid isPermaLink="false">24616@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>That would work for me.</p>
<p>So basically, on my multi-domain setup, when I want an existing  sub-domain to redirect to my multi-directory server, I would put something into the .htaccess.</p>
<p>In .htaccess;</p>
<p>Redirect 301 <a href="http://sub1.mydomain.com/" rel="nofollow">http://sub1.mydomain.com/</a> <a href="http://www.mydomain.com/sub1-replacement" rel="nofollow">http://www.mydomain.com/sub1-replacement</a></p>
<p>The above doesn't work, it's just an example something along those lines right.
</p>]]></description>
					</item>
		<item>
			<title>jbleep on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24615</link>
			<pubDate>Tue, 16 Apr 2013 07:57:03 +0000</pubDate>
			<dc:creator>jbleep</dc:creator>
			<guid isPermaLink="false">24615@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>I am not an expert on it, but could probably figure it out.  I know you said you want to do it through a control panel, but you should be able to put a redirect in .htaccess to accomplish the subdomain to folder translation pretty easily.</p>
<p>Of course, this could be done internally in WP, but that may take a long time for you to get.  I started <a href="http://alohacreek.com" rel="nofollow">http://alohacreek.com</a>, which has a number of subfolders, a few months ago with subdomains, but switched over to subfolders fairly early on.  Later, I learned more about .htaccess redirects.  They can be pretty tricky, but you can do this sort of thing.  I suggest you set it up on a local or test server and do some testing.  You can get the .htaccess to rearrange the sections of the url however you want.
</p>]]></description>
					</item>
		<item>
			<title>Ipstenu (Mika Epstein) on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24120</link>
			<pubDate>Tue, 29 Jan 2013 23:32:18 +0000</pubDate>
			<dc:creator>Ipstenu (Mika Epstein)</dc:creator>
			<guid isPermaLink="false">24120@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>They all work about the same on 3.5
</p>]]></description>
					</item>
		<item>
			<title>3x7 on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24119</link>
			<pubDate>Tue, 29 Jan 2013 23:25:22 +0000</pubDate>
			<dc:creator>3x7</dc:creator>
			<guid isPermaLink="false">24119@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>Thank you, will try that out.</p>
<p>There are few, is there any preference for wp 3.5?</p>
<p>thx again.</p>
<p>Cheers!
</p>]]></description>
					</item>
		<item>
			<title>Ipstenu (Mika Epstein) on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24114</link>
			<pubDate>Tue, 29 Jan 2013 14:36:07 +0000</pubDate>
			<dc:creator>Ipstenu (Mika Epstein)</dc:creator>
			<guid isPermaLink="false">24114@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>Right now you would need to use a multi network plugin to do this.
</p>]]></description>
					</item>
		<item>
			<title>3x7 on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-24113</link>
			<pubDate>Tue, 29 Jan 2013 13:26:36 +0000</pubDate>
			<dc:creator>3x7</dc:creator>
			<guid isPermaLink="false">24113@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>+1 here.</p>
<p>I have a situation where a user is able to create own "subdirectory" from frontend, but it's only possible to create a "subdirectory", since I installed the "subdirectory MU" installation.</p>
<p>Perfect scenario would be if I could offer them to choose from "subdomain" or "subdirectory" while creating a site (with explanation of benefits for each)</p>
<p>2nd good way would also be, If I do a domain mapping from subdirectory to subdomain, so my question is if that would use the domain.url/user1 but show user1.domain.url in the url?</p>
<p>basically, I prefer using subdirectory for better seo etc. but I rather have users use "subdomain" for promoting their sites, so the site should be nested in "subdirectory", but should show the "subdomain" in the url.</p>
<p>Any help would be appreciated.</p>
<p>thank you.
</p>]]></description>
					</item>
		<item>
			<title>wordOne on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories/page/2#post-23979</link>
			<pubDate>Fri, 04 Jan 2013 15:27:04 +0000</pubDate>
			<dc:creator>wordOne</dc:creator>
			<guid isPermaLink="false">23979@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>The real bottom line is that some of us need to leverage good domain names so need everything in one place. </p>
<p>I too have a requirement for both using the same domain name and it would be best to have one single server and I would handle load balancing/redundancy in the usual way that I handle large installations. </p>
<p>I badly need site1.domain.com along with <a href="http://www.domain.com/user-blogs" rel="nofollow">http://www.domain.com/user-blogs</a> but it has been near impossible to get enough information together to figure this out. Using plugins is a temporary fix and the concern there is always that authors too often abandon their plugins and there is no upgrade path other than hiring someone to write it at the last minute when important upgrades come along.</p>
<p>If anyone has information on this, concerning 3.5 installs, I and others would certainly appreciate it.
</p>]]></description>
					</item>
		<item>
			<title>voopress on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories#post-23922</link>
			<pubDate>Sun, 23 Dec 2012 23:45:29 +0000</pubDate>
			<dc:creator>voopress</dc:creator>
			<guid isPermaLink="false">23922@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>I'm running a 3.5 network site using sub-directories and came across this while looking for exactly this information.</p>
<p>We also have a requirement where we need to have both and I've been looking around on how to do that. </p>
<p>My question to those who have done it is this.</p>
<p>I have my own network and resources so if I have to run separate servers for both that is not a problem. In fact, it might be the smarter thing to do since sub-domain users aren't interested in being part of any main site anyhow whereas sub-directory users do enjoy being part of the main community.</p>
<p>So, wondering how you have dealt with this. Was it better to do it all on one server or using two separate installs.</p>
<p>Thanks.
</p>]]></description>
					</item>
		<item>
			<title>Ipstenu (Mika Epstein) on "Unified subdomains and subdirectories"</title>
			<link>http://wordpress.org/ideas/topic/unified-subdomains-and-subdirectories#post-21786</link>
			<pubDate>Mon, 16 Apr 2012 11:36:48 +0000</pubDate>
			<dc:creator>Ipstenu (Mika Epstein)</dc:creator>
			<guid isPermaLink="false">21786@http://wordpress.org/ideas/</guid>
			<description><![CDATA[<p>For multisite, you need a MultiNetwork plugin for that. Of which a few exist. It does exactly was Annointed described.
</p>]]></description>
					</item>

	</channel>
</rss>
