<?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>bbPress Support Forums &#187; User Favorites: mrhoratio</title>
		<link>http://bbpress.org/forums/profile/</link>
		<description>bbPress Support Forums &#187; User Favorites: mrhoratio</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 05:07:14 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>mrhoratio on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-16116</link>
			<pubDate>Sat, 10 May 2008 08:35:49 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16116@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Sambauers,</p>
<p>As you suggested, I was able to modify get_user_profile_link() function in template-functions.php to prevent the redirection. Mod_rewrite will now rewrite to the profile page properly, without redirecting it. </p>
<p>But now, it shows I'm no longer logged in when I'm on a rewritten page, even though I am. When I try to log in. It just reloads the page.</p>
<p>Here's the mod in_user_profile_link():</p>
<pre><code>function get_user_profile_link( $id = 0, $page = 1 ) {
	$user = bb_get_user( bb_get_user_id( $id ) );
	$rewrite = bb_get_option( &#39;mod_rewrite&#39; );
	if ( $rewrite ) {
		if ( $rewrite === &#39;slugs&#39; ) {
			$column = &#39;user_nicename&#39;;
		} else {
			$column = &#39;ID&#39;;
		}
		$r = bb_get_option(&#39;uri&#39;) . &#34;profile/&#34; . $user-&#62;$column . ( 1 &#60; $page ? &#34;/page/$page&#34; : &#39;&#39; );
	} else {
		$r = bb_get_option(&#39;uri&#39;) . &#34;profile/&#34; . $user-&#62;$column . ( 1 &#60; $page ? &#34;/page/$page&#34; : &#39;&#39; );

	}
		$r = str_replace(&#39;forums/profile/&#39; . $user-&#62;$column , &#34;profile/&#34; . $user-&#62;$column, $r);
		return apply_filters( &#39;get_user_profile_link&#39;, $r, $user-&#62;ID );

}</code></pre>
<p>My goal is create a short URL such as <a href="http://www.example.com/profile/username" rel="nofollow">http://www.example.com/profile/username</a>
</p>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16041</link>
			<pubDate>Wed, 07 May 2008 21:28:59 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16041@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Chris, you have a point. However the URL structure of forums and topics always begin with "forum" or "topic". As in:</p>
<p><code><a href="http://www.example.com/bbpress/forum/pets-discussions/" rel="nofollow">http://www.example.com/bbpress/forum/pets-discussions/</a></code><br />
<code><a href="http://www.example.com/bbpress/topic/my-sweet-dog" rel="nofollow">http://www.example.com/bbpress/topic/my-sweet-dog</a></code></p>
<p>So it would seem that it should be possible to remove the "bbpress" from the URL without interfering with a WordPress installation.</p>
<p>Having said that, I think the solution proposed in the thread I referred to in my last post (<a href="http://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done" rel="nofollow">http://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done</a>) is a much more elegant solution for shortening the bbPress URLs.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16040</link>
			<pubDate>Wed, 07 May 2008 21:20:37 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">16040@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It could work like that I think if there were no website (like WordPress) in the www root.  Otherwise, how does the server know it's a bbPress page vs. a WordPress page?</p>
<p>If you are running a forum only on a domain, then it would be silly to have it in any sort of directory at all.  Otherwise, if you have a website in the root, you have to put bbPress into some sort of directory to prevent confusion.
</p>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16038</link>
			<pubDate>Wed, 07 May 2008 20:55:09 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16038@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just found an earlier thread which hits on a similar problem with shortening the bbPress URL:</p>
<p><a href="http://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done" rel="nofollow">http://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done</a></p>
<p>In the thread's example. In shows you how to shorten a url like:</p>
<p><code><a href="http://www.example.com/bbpress/forum/pets-discussions/topic/my-sweet-dog" rel="nofollow">http://www.example.com/bbpress/forum/pets-discussions/topic/my-sweet-dog</a></code></p>
<p>to: </p>
<p><code><a href="http://www.example.com/bbpress/pets-discussions/my-sweet-dog" rel="nofollow">http://www.example.com/bbpress/pets-discussions/my-sweet-dog</a></code></p>
<p>Now, if it could also be shortened to:</p>
<p><code><a href="http://www.example.com/pets-discussions/my-sweet-dog" rel="nofollow">http://www.example.com/pets-discussions/my-sweet-dog</a></code></p>
<p>That would be even better.
</p>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16034</link>
			<pubDate>Wed, 07 May 2008 19:52:04 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16034@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi Bobby, yes I added those lines to the .htaccess file as well. It didn't seem to fix the problem. So I tried adding it to rewrite-rules.php also.
</p>]]></description>
					</item>
		<item>
			<title>bobbyh on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16030</link>
			<pubDate>Wed, 07 May 2008 17:58:32 +0000</pubDate>
			<dc:creator>bobbyh</dc:creator>
			<guid isPermaLink="false">16030@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You said: "I also tried adding this to the rewrite-rules.php". That's unnecessary.  You just need to add those lines to your htaccess file, which should contain the contents of the page located at <a href="http://www.lifeclever.com/forums/bb-admin/rewrite-rules.php" rel="nofollow">http://www.lifeclever.com/forums/bb-admin/rewrite-rules.php</a>. Did you add those lines to your htaccess file?
</p>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16029</link>
			<pubDate>Wed, 07 May 2008 17:52:22 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16029@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey bobby, here it is here:</p>
<p><a href="http://www.lifeclever.com/forums/" rel="nofollow">http://www.lifeclever.com/forums/</a>
</p>]]></description>
					</item>
		<item>
			<title>bobbyh on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16028</link>
			<pubDate>Wed, 07 May 2008 17:51:07 +0000</pubDate>
			<dc:creator>bobbyh</dc:creator>
			<guid isPermaLink="false">16028@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Can you post a link to your site?
</p>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16027</link>
			<pubDate>Wed, 07 May 2008 17:31:54 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16027@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi bobby, I tried out your hack in bbPress 0.9, and it doesn't seem to work. Here's what I did:</p>
<p>I have my bbPress directory installed in a directory called "forums" in the root web directory. So the URL to access the forums' home page is:</p>
<p><code><a href="http://www.example.com/forums" rel="nofollow">http://www.example.com/forums</a></code></p>
<p>and accessing a forum titled "test forum" is at this URL:</p>
<p><code><a href="http://www.example.com/forums/forum/test-forum" rel="nofollow">http://www.example.com/forums/forum/test-forum</a></code></p>
<p>a topic titled "test topic" is at this URL:</p>
<p><code><a href="http://www.example.com/forums/topic/test-forum" rel="nofollow">http://www.example.com/forums/topic/test-forum</a></code></p>
<p>I implemented your hack, and changed "forum" to "board" in the template-functions.php. I copied the rewrite rules from rewrite-rules.php and placed them into .htaccess file in the root web directory. I also added the two lines of code you suggested in that file:</p>
<pre><code>RewriteRule ^board/(.+)/page/([0-9]+)$ /forum.php?id=&#38;page= [L,QSA]
RewriteRule ^board/(.+)/?$ /forum.php?id= [L,QSA]</code></pre>
<p>I also tried adding this to the rewrite-rules.php:</p>
<pre><code>RewriteRule ^board/([^/]+)/page/([0-9]+)/?$ &#60;?php bb_option( &#39;path&#39; ); ?&#62;topic.php?id=&#38;page= [L,QSA]
RewriteRule ^board/([^/]+)/?$ &#60;?php bb_option( &#39;path&#39; ); ?&#62;topic.php?id= [L,QSA]</code></pre>
<p>When I go to this URL: </p>
<p><code><a href="http://www.example.com/board/test-forum" rel="nofollow">http://www.example.com/board/test-forum</a></code></p>
<p>I get a 404 error.</p>
<p>However, when I go to this url:</p>
<p><code><a href="http://www.example.com/forums/forum/test-forum/" rel="nofollow">http://www.example.com/forums/forum/test-forum/</a></code></p>
<p>It redirects and changes the URL in the address bar in the browser window changes:</p>
<p><code><a href="http://www.example.com/forums/board/test-forum/" rel="nofollow">http://www.example.com/forums/board/test-forum/</a></code></p>
<p>That also brings up a 404 page.</p>
<p>Also, when I go this URL:</p>
<p><code><a href="http://www.example.com/topic/test-topic" rel="nofollow">http://www.example.com/topic/test-topic</a></code></p>
<p>The URL works, but it redirects and changes the URL in the address bar in the browser window changes to:</p>
<p><code><a href="http://www.example.com/forums/topic/test-forum" rel="nofollow">http://www.example.com/forums/topic/test-forum</a></code></p>
<p>I am a little perplexed as to what is going on.
</p>]]></description>
					</item>
		<item>
			<title>bobbyh on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16025</link>
			<pubDate>Wed, 07 May 2008 17:03:49 +0000</pubDate>
			<dc:creator>bobbyh</dc:creator>
			<guid isPermaLink="false">16025@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I wanted the forum-specific URLs to look like this:</p>
<p>* <a href="http://boards.weddingbee.com/board/beehive" rel="nofollow">http://boards.weddingbee.com/board/beehive</a></p>
<p>If you make the right edits to that core file and an htaccess file, I think the URL can be anything you want...
</p>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16024</link>
			<pubDate>Wed, 07 May 2008 17:01:25 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16024@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey bobby, just curious. Why did you have to change the second "forum" to "board"? Is there anyway to just leave it as "forum"?
</p>]]></description>
					</item>
		<item>
			<title>bobbyh on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16020</link>
			<pubDate>Wed, 07 May 2008 09:19:42 +0000</pubDate>
			<dc:creator>bobbyh</dc:creator>
			<guid isPermaLink="false">16020@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I did something similar, but it required a core hack. I renamed the second "forum" to "board". It required two steps:</p>
<p>1. With version 0.8.3, I modified line 363 of /bb-includes/template-functions.php to this:</p>
<p><code>$link = bb_get_option( &#39;uri&#39; ) . &#34;board/&#34; . $forum-&#62;$column . ( 1 &#60; $page ? &#34;/page/$page&#34; : &#39;&#39; );</code></p>
<p>2. I created an htaccess file by copying the text from /bb-admin/rewrite-rules.php, with two extra lines:</p>
<pre><code>RewriteRule ^board/(.+)/page/([0-9]+)$ /forum.php?id=&#38;page= [L,QSA]
RewriteRule ^board/(.+)/?$ /forum.php?id= [L,QSA]</code></pre>]]></description>
					</item>
		<item>
			<title>mrhoratio on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-16017</link>
			<pubDate>Wed, 07 May 2008 03:26:48 +0000</pubDate>
			<dc:creator>mrhoratio</dc:creator>
			<guid isPermaLink="false">16017@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey, I'm trying to figure this out also. Anyone figured out a way to remove the first "forum" in <a href="http://www.example.com/forum/forum/forum-name" rel="nofollow">http://www.example.com/forum/forum/forum-name</a>. So that the URL is shorter? I tried doing it with mod_rewrite, but having some issues with bbPress automatically redirecting.
</p>]]></description>
					</item>
		<item>
			<title>noelgreen on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-10851</link>
			<pubDate>Fri, 07 Sep 2007 17:35:04 +0000</pubDate>
			<dc:creator>noelgreen</dc:creator>
			<guid isPermaLink="false">10851@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There has got to be a fairly easy way to remove the "forums/" slug from the URL... anyone know how yet?
</p>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10532</link>
			<pubDate>Tue, 28 Aug 2007 01:50:42 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">10532@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>My advice is don't try to change <code>bb_repermalink()</code>.</p>
<p>Just to qualify myself, I rewrote <code>bb_repermalink()</code> a while back to implement slug-based permalinks. It's a tricky beast, and the most complex part is the profile-page case.</p>
<p>But if you must, then you should start by turning debugging on <code>$bb-&#62;debug = 1</code> in config.php should do it. Then when you hit your link you should get some readable debug info at the top of your page.</p>
<p>The critical part of stopping the redirect is on line 1708 of bb-includes/functions.php, you have to make that condition happy to stop the redirect to it's preferred permalink location. That may involve simply modifying the <code>get_user_profile_link()</code> and also the <code>get_profile_tab_link()</code> functions, but I'm not 100% sure about that.
</p>]]></description>
					</item>
		<item>
			<title>fabianzaf on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10530</link>
			<pubDate>Mon, 27 Aug 2007 23:40:37 +0000</pubDate>
			<dc:creator>fabianzaf</dc:creator>
			<guid isPermaLink="false">10530@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Awesome! I learnt something new ([^/]+) .. very cool.</p>
<p>Ok the rewrite worked.</p>
<p>Now just to figure out this repermalink... </p>
<p>Any ideas guys? I'll go look around myself in the meantime ^_^
</p>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10507</link>
			<pubDate>Mon, 27 Aug 2007 00:38:58 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">10507@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Add this to your sites root directory .htaccess file.</p>
<p>This assumes that your bbPress install is in a subdirectory of your sites root called "forums".</p>
<p>These rules need to be added before any WordPress rules.</p>
<p>The rewrite will work, but bb_repermalink() will change the URL so that it appears as it normally would.</p>
<pre><code>&#60;IfModule mod_rewrite.c&#62;
RewriteEngine On
RewriteBase /
RewriteRule ^users/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=&#38;page= [L,QSA]
RewriteRule ^users/([^/]+)/([^/]+)/?$ /forums/profile.php?id=&#38;tab= [L,QSA]
RewriteRule ^users/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=&#38;tab=&#38;page= [L,QSA]
RewriteRule ^users/([^/]+)/?$ /forums/profile.php?id= [L,QSA]
&#60;/IfModule&#62;</code></pre>]]></description>
					</item>
		<item>
			<title>fabianzaf on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10506</link>
			<pubDate>Mon, 27 Aug 2007 00:10:23 +0000</pubDate>
			<dc:creator>fabianzaf</dc:creator>
			<guid isPermaLink="false">10506@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>can I get a reply on this please
</p>]]></description>
					</item>
		<item>
			<title>fabianzaf on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10496</link>
			<pubDate>Sun, 26 Aug 2007 12:26:40 +0000</pubDate>
			<dc:creator>fabianzaf</dc:creator>
			<guid isPermaLink="false">10496@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I already edited the template-functions.php to </p>
<p>		$r = bb_get_option('uri') . "../user/" . $user-&#62;$column . ( 1 &#60; $page ? "/page/$page" : '' );<br />
	} else {<br />
		$r = bb_get_option('uri') . "profile.php?id=$user-&#62;ID" . ( 1 &#60; $page ? "&#38;page=$page" : '' );<br />
	}</p>
<p>I can access it from /user/username/ one level up (ie.root)</p>
<p>So accessing the link isnt a problem. I just need it to be rewritten
</p>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10489</link>
			<pubDate>Sun, 26 Aug 2007 03:05:03 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">10489@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Even if you got the Rewrite rules written correctly, the page wold not load due to the checks carried out that check the URL in the function repermalink().
</p>]]></description>
					</item>
		<item>
			<title>fabianzaf on "Rewriting up one level"</title>
			<link>http://bbpress.org/forums/topic/rewriting-up-one-level#post-10486</link>
			<pubDate>Sun, 26 Aug 2007 00:12:40 +0000</pubDate>
			<dc:creator>fabianzaf</dc:creator>
			<guid isPermaLink="false">10486@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey guys,</p>
<p>I've been googling about this for a while now and cant seem to find a solution. If I want to do an SEO rewrite with Rewriterule that causes the file to be written up one level...</p>
<p>(the equivalent of browser-side linking "../") </p>
<p>how would I do that?  for example, I have </p>
<p>Rewriterule ^profile/  etc etc</p>
<p>What do I do.. </p>
<p>"/profile/"?<br />
"../profile/"?<br />
"$/profile/"?</p>
<p>No idea really.. any thoughts on this would be great. I basically want it to go up one level and ignore my forums directory..</p>
<p>so instead of /forums/profile/ its /profile/
</p>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-6351</link>
			<pubDate>Tue, 03 Apr 2007 23:42:24 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">6351@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>&#62; Is the 'forum' the "forum" I want to remove?</p>
<p>No. It's a little more complicated than that. In fact, that part you say needs to be hacked, needs to be left completely alone. Really, you are asking for a world of pain by attempting this. It took me hours to write and test the slugs support. Seriously, just rename your forum directory - it's not worth the hours you will spend.
</p>]]></description>
					</item>
		<item>
			<title>Mirce on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-6348</link>
			<pubDate>Tue, 03 Apr 2007 23:13:40 +0000</pubDate>
			<dc:creator>Mirce</dc:creator>
			<guid isPermaLink="false">6348@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanx for the response.<br />
I tried to follow  how the links are made in functions.php. In bb_repermalink() the case 'forum-page' needs to be "hacked"</p>
<p>$forum_id = bb_get_id_from_slug('forum', $permalink);</p>
<p>Is the 'forum' the "forum" I want to remove?<br />
Thanx.
</p>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-6341</link>
			<pubDate>Tue, 03 Apr 2007 22:13:32 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">6341@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Without core hacks or writing your own plugin that hooks into the get_forum_link function and the bb_repermalink function it's not possible. Your .htaccess file may be correct, but the links generated on the forum won't work without changing the what those functions expect. I suggest you change the name of the subdirectory you are placing your forums in - that would be the path of least resistance..
</p>]]></description>
					</item>
		<item>
			<title>Mirce on "Permalinks Slugs Modification - removing forum"</title>
			<link>http://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum#post-6336</link>
			<pubDate>Tue, 03 Apr 2007 20:38:50 +0000</pubDate>
			<dc:creator>Mirce</dc:creator>
			<guid isPermaLink="false">6336@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I want to install bbPress permalinks slugs on <a href="http://www.example.com/forum" rel="nofollow">http://www.example.com/forum</a>.  The forum will be hosted in <a href="http://www.exmaple.com/forum/" rel="nofollow">http://www.exmaple.com/forum/</a></p>
<p>I am trying to remove the "forum" from the forum's url because the normal output its ugly.</p>
<p>So from:<br />
<a href="http://www.example.com/forum/forum/forum-name" rel="nofollow">http://www.example.com/forum/forum/forum-name</a><br />
to get<br />
<a href="http://www.example.com/forum/forum-name" rel="nofollow">http://www.example.com/forum/forum-name</a> </p>
<p>I've edited in /bb-includes/template-functions.php the $link from<br />
$link = bb_get_option( 'uri' )  . "forum/" . $forum-&#62;$column . ( 1 &#60; $page ? "/page/$page" : '' );<br />
to<br />
$link = bb_get_option( 'uri' )  .  $forum-&#62;$column . ( 1 &#60; $page ? "/page/$page" : '' );<br />
but I do not manage to make the new link to work for .httaccess. Is there a way to do it?</p>
<p>Thanx.
</p>]]></description>
					</item>

	</channel>
</rss>

