这是使用permalinks为模式自动生成的WP htaccess文件/%year%/%postname%/
(使用http://localhost/BLOG-FOLDER/
然而):
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /BLOG-FOLDER/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /BLOG-FOLDER/index.php [L]
</IfModule>
现在的问题是重写规则适用于
http://localhost/BLOG-FOLDER/this-file-does-not-exist
, 而且不仅仅是“正确的永久链接”,如
http://localhost/2012/My-first-entry/
.
那么,为了完成这项工作,我对htaccess文件做了哪些修改?
非常感谢!卡洛斯