我正在使用WordPress .htaccess文件,如下所示
# 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
这不适用于我的永久链接/%postname%
可能是什么问题?
答案 0 :(得分:2)
1.-请确保您的设置永久链接在Permalink Settings
http:// your_domain / wp-admin / options-permalink.php
2.-如果您在子目录中使用WP,则必须修改htaccess:
RewriteBase /subdir/
<强>更新强>:
3.-启用重写模块。在ubuntu很容易:
sudo a2enmod rewrite
4.-在服务器的配置中允许.htaccess
<Directory /your_wp_dir>
AllowOverride All
</Directory>
5.-服务器配置中的任何更改重启后(再次在ubuntu中):
$ sudo service apache2 restart
答案 1 :(得分:1)
您使用的是哪个版本的Apache?另外,请确保使用
检查测试页<?php
phpinfo();
?>
和CTRL + F代表“mod_rewrite”。