<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums User Favorites: nekketsu</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums User Favorites: nekketsu</description>
<language>en</language>
<pubDate>Sat, 22 Nov 2008 23:41:06 +0000</pubDate>

<item>
<title>motiongraphics01 on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6167</link>
<pubDate>Fri, 30 Mar 2007 06:54:29 +0000</pubDate>
<dc:creator>motiongraphics01</dc:creator>
<guid isPermaLink="false">6167@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yes it works!  thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6162</link>
<pubDate>Fri, 30 Mar 2007 04:20:29 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">6162@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's a good start.  Is it resolved now?
&#60;/p&#62;</description>
</item>
<item>
<title>motiongraphics01 on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6153</link>
<pubDate>Thu, 29 Mar 2007 22:05:45 +0000</pubDate>
<dc:creator>motiongraphics01</dc:creator>
<guid isPermaLink="false">6153@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;!!!!!! Maybe I have resolved!!!!!!  I set the pretty permalings to false in a config.php!!!!!
&#60;/p&#62;</description>
</item>
<item>
<title>motiongraphics01 on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6147</link>
<pubDate>Thu, 29 Mar 2007 20:48:59 +0000</pubDate>
<dc:creator>motiongraphics01</dc:creator>
<guid isPermaLink="false">6147@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ok chrishajer I post now my code&#60;/p&#62;
&#60;p&#62;.HTACCES:&#60;br /&#62;
----------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;&#38;lt;ifmodule mod_rewrite.c&#38;gt;&#60;br /&#62;
RewriteEngine On&#60;br /&#62;
RewriteBase /forum/&#60;br /&#62;
RewriteRule ^forum/([0-9]+)/page/([0-9]+)$ /forum/forum.php?id=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^forum/([0-9]+)$ /forum/forum.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^topic/([0-9]+)/page/([0-9]+)$ /forum/topic.php?id=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^topic/([0-9]+)$ /forum/topic.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/(.+)/page/([0-9]+)$ /forum/tags.php?tag=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/(.+)/?$ /forum/tags.php?tag=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/?$ /forum/tags.php [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)/page/([0-9]+)$ /forum/profile.php?id=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)/([a-z]+)$ /forum/profile.php?id=$1&#38;#38;tab=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)/([a-z]+)/page/([0-9]+)$ /forum/profile.php?id=$1&#38;#38;tab=$2&#38;#38;page=$3 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)$ /forum/profile.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /forum/view.php?view=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^view/([a-z-]+)$ /forum/view.php?view=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/$ /forum/rss.php [L,QSA]&#60;br /&#62;
RewriteRule ^rss/forum/([0-9]+)$ /forum/rss.php?forum=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/topic/([0-9]+)$ /forum/rss.php?topic=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/tags/([a-z]+)$ /forum/rss.php?tag=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/profile/([0-9]+)$ /forum/rss.php?profile=$1 [L,QSA]&#60;br /&#62;
&#38;lt;/ifmodule&#38;gt;&#60;/p&#62;
&#60;p&#62;---------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;CONFIG.PHP:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;define('BBDB_NAME', 'Sql*****_4');&#60;br /&#62;
define('BBDB_USER', 'Sql*****');&#60;br /&#62;
define('BBDB_PASSWORD', '********');&#60;br /&#62;
define('BBDB_HOST', '62.149.***.**');   &#60;/p&#62;
&#60;p&#62;$bb_table_prefix  = 'bb_'; &#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;domain = 'http://www.motiongraphics.it';&#60;br /&#62;
$bb-&#38;gt;path   = '/forum/';&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;name   = 'Motiongraphics Forum';&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;admin_email = 'info@motiongraphics.it';&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;mod_rewrite = true;&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;page_topics = 30;&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;edit_lock = 60;&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;gmt_offset = +2;&#60;/p&#62;
&#60;p&#62;define('BBLANG', '');&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;akismet_key = '*********3c'; &#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;wp_table_prefix = 'wp_';&#60;br /&#62;
$bb-&#38;gt;wp_home = 'http://motiongraphics.it';&#60;br /&#62;
$bb-&#38;gt;wp_siteurl = 'http://motiongraphics.it';  &#60;/p&#62;
&#60;p&#62;if ( !defined('BBPATH') )&#60;br /&#62;
	define('BBPATH', dirname(__FILE__) . '/' );&#60;br /&#62;
require_once( BBPATH . 'bb-settings.php' );&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;/p&#62;
&#60;p&#62;Many Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>prebrov on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6140</link>
<pubDate>Thu, 29 Mar 2007 18:10:19 +0000</pubDate>
<dc:creator>prebrov</dc:creator>
<guid isPermaLink="false">6140@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm still having that problem. I tried all solutions on this page, but had no luck getting pretty URLs. Forum is working fine, but whenever I apply .htaccess settings, either copy-pasted from this forum or from rewrite-rules.php, I get an error&#60;/p&#62;
&#60;p&#62;&#60;em&#62;&#60;br /&#62;
Not Acceptable&#60;br /&#62;
An appropriate representation of the requested resource /forum/topic/1 could not be found on this server.&#60;/p&#62;
&#60;p&#62;Available variants:&#60;/p&#62;
&#60;p&#62;    * topic.php , type application/x-httpd-php, language ru&#60;/p&#62;
&#60;p&#62;&#60;/em&#62;&#60;br /&#62;
What could that be? I have the latest version of bbPress, it's using wordpress database for authorization &#38;#38; authentication, but runs in a separate directory.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6135</link>
<pubDate>Thu, 29 Mar 2007 17:40:49 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">6135@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;A 500 error like you are getting means something is invalid in one of the files you edited.  Can you post the config.php and the .htaccess - there's a syntax error somewhere.
&#60;/p&#62;</description>
</item>
<item>
<title>motiongraphics on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6116</link>
<pubDate>Thu, 29 Mar 2007 12:44:21 +0000</pubDate>
<dc:creator>motiongraphics</dc:creator>
<guid isPermaLink="false">6116@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yes! in config.php   :(
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6114</link>
<pubDate>Thu, 29 Mar 2007 11:56:28 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6114@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Did you set pretty permalinks to true?
&#60;/p&#62;</description>
</item>
<item>
<title>motiongraphics on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-6111</link>
<pubDate>Thu, 29 Mar 2007 11:22:08 +0000</pubDate>
<dc:creator>motiongraphics</dc:creator>
<guid isPermaLink="false">6111@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I put the code of thomasw98 but...&#60;/p&#62;
&#60;p&#62;Internal Server Error&#60;/p&#62;
&#60;p&#62;The server encountered an internal error or misconfiguration and was unable to complete your request.&#60;/p&#62;
&#60;p&#62;why?? I put in my folder a new .htaccess file.. :(
&#60;/p&#62;</description>
</item>
<item>
<title>umutyaku on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-5697</link>
<pubDate>Wed, 21 Mar 2007 13:18:15 +0000</pubDate>
<dc:creator>umutyaku</dc:creator>
<guid isPermaLink="false">5697@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am a new bbpress user and I have tried it 3 times. Finally I have read the answer of thomasw98, and fixed my system.&#60;/p&#62;
&#60;p&#62;thanks a lot...
&#60;/p&#62;</description>
</item>
<item>
<title>Mirce on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-5040</link>
<pubDate>Thu, 01 Mar 2007 17:08:44 +0000</pubDate>
<dc:creator>Mirce</dc:creator>
<guid isPermaLink="false">5040@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It can be done.&#60;br /&#62;
You can check out:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/771&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/771&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And see &#60;a href=&#34;http://www.dfur.com&#34; rel=&#34;nofollow&#34;&#62;www.dfur.com&#60;/a&#62; to see how I did it. THe script is not ready yet, I still have to add the rewrite htaccess to &#34;page 2&#34; topics.
&#60;/p&#62;</description>
</item>
<item>
<title>nekketsu on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-5030</link>
<pubDate>Thu, 01 Mar 2007 13:23:17 +0000</pubDate>
<dc:creator>nekketsu</dc:creator>
<guid isPermaLink="false">5030@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;nobody have an answer ?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-3308</link>
<pubDate>Thu, 18 Jan 2007 09:49:23 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">3308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The rules are generated using Multiview if you can and originate out of /bb-admin/rewrite-rules.php.   I am not sure if anyone has ever tackled it before, but maybe someone else has an idea how to get this accomplished because I am sure it can be accomplished.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>nekketsu on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-3301</link>
<pubDate>Thu, 18 Jan 2007 07:52:57 +0000</pubDate>
<dc:creator>nekketsu</dc:creator>
<guid isPermaLink="false">3301@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hi,&#60;br /&#62;
i would like to change the rewrite rules. Is it possible ?&#60;br /&#62;
i would like to have the name of the forum then the name of the topic in the url.&#60;/p&#62;
&#60;p&#62;Thx in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>nekketsu on "[Request] Download Manager"</title>
<link>http://bbpress.org/forums/topic/request-download-manager#post-3300</link>
<pubDate>Thu, 18 Jan 2007 07:25:06 +0000</pubDate>
<dc:creator>nekketsu</dc:creator>
<guid isPermaLink="false">3300@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
i request a plugin for upload files :)
&#60;/p&#62;</description>
</item>
<item>
<title>nekketsu on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-2653</link>
<pubDate>Thu, 28 Dec 2006 07:28:56 +0000</pubDate>
<dc:creator>nekketsu</dc:creator>
<guid isPermaLink="false">2653@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hi,&#60;br /&#62;
how to change &#34;forum/1&#34; by the name of the forum (category) ?
&#60;/p&#62;</description>
</item>
<item>
<title>mozey on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-327</link>
<pubDate>Sun, 22 Oct 2006 15:10:14 +0000</pubDate>
<dc:creator>mozey</dc:creator>
<guid isPermaLink="false">327@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It sure does, thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>thomasw98 on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-279</link>
<pubDate>Sat, 21 Oct 2006 08:23:32 +0000</pubDate>
<dc:creator>thomasw98</dc:creator>
<guid isPermaLink="false">279@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sometimes all of these comments are way over my head, so I have to just keep trying and trying...until I figure it out.&#60;/p&#62;
&#60;p&#62;I kept having problems with this topic, until finally I figured out the the .htaccess file that should be changed was NOT the one that already existed in my www (root) folder but rather i had to create a NEW .htaccess file and store it in my forum subfolder. &#60;/p&#62;
&#60;p&#62;I tried the suggested simple version first (i.e. &#34;Options +MultiViews&#34;), but it would not work on my server. I then used the more complex version to create a new .htaccess file with the following contents:&#60;/p&#62;
&#60;p&#62;&#38;lt;ifmodule mod_rewrite.c&#38;gt;&#60;br /&#62;
RewriteEngine On&#60;br /&#62;
RewriteBase /forum/&#60;br /&#62;
RewriteRule ^forum/([0-9]+)/page/([0-9]+)$ /forum/forum.php?id=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^forum/([0-9]+)$ /forum/forum.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^topic/([0-9]+)/page/([0-9]+)$ /forum/topic.php?id=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^topic/([0-9]+)$ /forum/topic.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/(.+)/page/([0-9]+)$ /forum/tags.php?tag=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/(.+)/?$ /forum/tags.php?tag=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/?$ /forum/tags.php [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)/page/([0-9]+)$ /forum/profile.php?id=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)/([a-z]+)$ /forum/profile.php?id=$1&#38;#38;tab=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)/([a-z]+)/page/([0-9]+)$ /forum/profile.php?id=$1&#38;#38;tab=$2&#38;#38;page=$3 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([0-9]+)$ /forum/profile.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /forum/view.php?view=$1&#38;#38;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^view/([a-z-]+)$ /forum/view.php?view=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/$ /forum/rss.php [L,QSA]&#60;br /&#62;
RewriteRule ^rss/forum/([0-9]+)$ /forum/rss.php?forum=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/topic/([0-9]+)$ /forum/rss.php?topic=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/tags/([a-z]+)$ /forum/rss.php?tag=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/profile/([0-9]+)$ /forum/rss.php?profile=$1 [L,QSA]&#60;br /&#62;
&#38;lt;/ifmodule&#38;gt;&#60;/p&#62;
&#60;p&#62;You can see above that I already changed the &#34;/path/to/bbPress/&#34; part into &#34;/forum/&#34; as that is the name of the subfolder on my root directory in which I store my forum (your subfolder name is probably different, so be careful to use the correct name for YOUR subfolder, not mine!). &#60;/p&#62;
&#60;p&#62;Put more simply, &#34;forum&#34; is the name of the subfolder in which config.php is stored.  So...I created an empty .htaccess file, put the above noted gibberish into the file, then stored the file in the &#34;forum&#34; folder on my server where config.php is already stored. &#60;/p&#62;
&#60;p&#62;Now it works like a charm!&#60;/p&#62;
&#60;p&#62;Hope that helps some of my fellow newbies out there!
&#60;/p&#62;</description>
</item>
<item>
<title>jazzle on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-197</link>
<pubDate>Wed, 18 Oct 2006 11:10:35 +0000</pubDate>
<dc:creator>jazzle</dc:creator>
<guid isPermaLink="false">197@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;NB: those typos are fixed in the latest version available from CVS/SVN.
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-149</link>
<pubDate>Mon, 16 Oct 2006 19:03:07 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">149@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The rewrite-rules.php file has a few typos.  Try this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/documentation/faq/#pretty-permalinks&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/documentation/faq/#pretty-permalinks&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>ergate on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-82</link>
<pubDate>Sun, 15 Oct 2006 16:52:33 +0000</pubDate>
<dc:creator>ergate</dc:creator>
<guid isPermaLink="false">82@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Its becuase I switched back to Multiviews.&#60;br /&#62;
I was giving the other a try, but until I can get it to work I will stick with multiviews.
&#60;/p&#62;</description>
</item>
<item>
<title>BPartch on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-81</link>
<pubDate>Sun, 15 Oct 2006 16:49:28 +0000</pubDate>
<dc:creator>BPartch</dc:creator>
<guid isPermaLink="false">81@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I did the &#34;bb-admin/rewrite-rules.php&#34; and all is fine except the &#34;tags&#34; links give me a internal server error.&#60;/p&#62;
&#60;p&#62;ergate yours seems to work perfectly. :)
&#60;/p&#62;</description>
</item>
<item>
<title>ergate on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-79</link>
<pubDate>Sun, 15 Oct 2006 16:40:26 +0000</pubDate>
<dc:creator>ergate</dc:creator>
<guid isPermaLink="false">79@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I gave this a try &#34;bb-admin/rewrite-rules.php&#34;, and it did not work.   I get an &#34;Internal Server&#34; error.&#60;br /&#62;
The multi views I posted earlier works with no problems.  Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>Potter_System on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-62</link>
<pubDate>Sun, 15 Oct 2006 04:34:56 +0000</pubDate>
<dc:creator>Potter_System</dc:creator>
<guid isPermaLink="false">62@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Copying from &#60;a href=&#34;http://bbpress.org/forums/topic/4?replies=3#post-16&#34;&#62;this post&#60;/a&#62;, by mdawaffe&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
mod_rewrite:&#60;br /&#62;
bbPress can generate a sample .htaccess file for you if you log in and browse to bb-admin/rewrite-rules.php. Copy the output and save it into your .htaccess file. Alternatively, you might be able to forgo the rewrite rules and instead set Options +MultiViews
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>ergate on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-61</link>
<pubDate>Sun, 15 Oct 2006 03:11:01 +0000</pubDate>
<dc:creator>ergate</dc:creator>
<guid isPermaLink="false">61@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is what I am using&#60;/p&#62;
&#60;p&#62;&#60;code&#62;# BEGIN BBPress&#60;br /&#62;
&#38;lt;IfModule mod_rewrite.c&#38;gt;&#60;br /&#62;
RewriteEngine On&#60;br /&#62;
RewriteBase /location_of_install/&#60;br /&#62;
Options +MultiViews&#60;br /&#62;
&#38;lt;/IfModule&#38;gt;&#60;br /&#62;
# END BBPress&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>hyram on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-52</link>
<pubDate>Sun, 15 Oct 2006 00:38:31 +0000</pubDate>
<dc:creator>hyram</dc:creator>
<guid isPermaLink="false">52@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I too set the pretty permalinks feature to &#34;true&#34; in the config.php file and none of the links lead to an actual page.&#60;/p&#62;
&#60;p&#62;Do we need to create a .htaccess file for this? If so what do we put in it.&#60;/p&#62;
&#60;p&#62;Sorry I am rewrite stupid.
&#60;/p&#62;</description>
</item>
<item>
<title>Ttech on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-50</link>
<pubDate>Sat, 14 Oct 2006 22:18:11 +0000</pubDate>
<dc:creator>Ttech</dc:creator>
<guid isPermaLink="false">50@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does &#34;PRetty URL's&#34; at least work? If so maybe it's not supposed to...
&#60;/p&#62;</description>
</item>
<item>
<title>julio19 on "No .htaccess file for "pretty" URLS?"</title>
<link>http://bbpress.org/forums/topic/no-htaccess-file-for-pretty-urls#post-46</link>
<pubDate>Sat, 14 Oct 2006 20:13:42 +0000</pubDate>
<dc:creator>julio19</dc:creator>
<guid isPermaLink="false">46@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;Is bbPress supposed to create an .htaccess file for mod_rewrite URLs?  I was expecting this, like in Wordpress, but there wasn't a file after install.  Should I just create my own .htaccess?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
