Permalinks Issue, and I am my own server administrator
-
I can get the “Ugly” permalinks to work, but not the “Pretty” permalinks. I have mod_rewrite enabled on my Apache2 server. My .htaccess file is in the root directory for wordpress. (the folder that I put the wordpress files in is actually “the_tracy_times”.) My .htaccess file looks like this…
Options +Followsymlinks
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /the_tracy_times/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /the_tracy_times/index.php [L]
</IfModule># END WordPress
This is my first experience with server administration. It’s a Linux server, running Apache2. I’ve been trying for 3 days to get this working. If anybody can help me get the permalinks working I’d appreciate it.
- The topic ‘Permalinks Issue, and I am my own server administrator’ is closed to new replies.