Servus,
ich habe Permalink eingestellt, mit folgender Struktur: /%year%/%monthnum%/%day%/%postname%/
Funktioniert leider nicht... "The requested URL was not found.."
Zu den weiteren Details:
Habe einen VServer mit Apache2.
Config meiner VHosts:
Code
<VirtualHost *:80> ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/>
Options -Indexes FollowSymLinks -Includes -MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
<FilesMatch "(\.htaccess|\.htpasswd|wp-config\.php|install\.php|liesmich\.html|readme\.html)">
order allow,deny
deny from all
</FilesMatch>
<FilesMatch "(plugin-install\.php|theme-install\.php)">
order allow,deny
allow from all
</FilesMatch>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel error
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Alles anzeigen
.htaccess-Config:
Apache Configuration
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Alles anzeigen
Rechte der .htaccess 666
Was kann das noch sein?
Ich probiere seit Tagen rum...
mod_rewrite ist an, steht in der PHp-Info.
Bitte helft mir :)
Danke!