morosophos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyNevermind, y’all. I backed up my data and reverted to WordPress 2.0.2, and everything works fine.
Forum: Fixing WordPress
In reply to: Permalinks – only work in fileform (index.php…)I try using
<Directory />
AllowOverride All
</Directory>
in my .htaccess file, but I get a “500 Internal Server Error.”Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyI removed all FrontPage extensions (though it didn’t look like there were any to begin with… the only trace of FrontPage I could find was the one comment in the .htaccess file. I re-uninstalled FrontPage nonetheless and tried it again to no avail.
Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyAha! That it is not. What overrides should be enabled? I tried using
<Directory />
AllowOverride All
</Directory>in the .htaccess file in the blog directory, but then I got an error 500—”Internal Server Error.” My inexperience in dealing with apache on almost any level may mean there’s something else in the .htaccess that may be causing it, or maybe there’s something elsewhere. Here’s my .htaccess as it stands now:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
DirectoryIndex index.php
<Directory />
AllowOverride All
</Directory># BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyThe commmands WordPress instructs me to enter into my .htaccess file are as follows:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /index.php/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php/index.php [L]
</IfModule>It seems to me like I should take out the
/index.php/from both theRewriteBasecommand and theRewriteRulecommand. After I tested the site with the .htaccess file exactly as WordPress suggested, I took them out and doing so didn’t change anything, where all the links pointed to “…/index.php/…”The setting under my common options is the “Custom structure” option with
/archives/%postname%/. I’m not currently using anything for my category base.Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyI’m hosted on unix with apache 1.3.36
Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyI think
mod_rewriteis present, because what I’ve put in the .htaccess still works to some extent, just not in the way it’s supposed to.Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyAnd on an additional note, if it makes any difference, I do have installed the WP 2.0.3 tuneup plugin.
Forum: Fixing WordPress
In reply to: “Almost-Pretty Permalinks” Won’t Get PrettyI edited my .htaccess file as you directed, but all the links on the blog still contain the /index.php/ prefix. However, manually removing the /index.php/ from the address and querying it shows that the page actually does work. However, it’s not the URI contained in the links. Everything is still passed through the index.php.