我试图在我permalink feature
的上使用,所以我只是复制了我点击时的代码。我将生成的代码保存在我的本地主机中,该文件以 .Only 的名称存储,现在当我要访问该页面时,该.Only 的url 栏。有人可以告诉我这里有什么错误吗?WordPress
localhost
generated by WordPress
post name from Common Settings
wordpress index.php
.htaccess
browser is showing the full address of the post
post can not be seen on the browser
404 Not Found error is comming
问问题
11713 次
1 回答
10
你应该让 wordpress 为你的 localhost 服务器写这个文件。
您不能简单地.htaccess
从另一台服务器复制并期望它会起作用,您必须对其进行修改以反映您的服务器配置。
您应该修改RewriteBase
和最后一个RewriteRule
,例如http://localhost/wordpress
:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
于 2012-09-11T08:49:20.090 回答