3

我试图在我permalink feature的上使用,所以我只是复制了我点击时的代码。我将生成的代码保存在我的本地主机中,该文件以 .Only 的名称存储,现在当我要访问该页面时,该.Only 的url 栏。有人可以告诉我这里有什么错误吗?WordPresslocalhostgenerated by WordPresspost name from Common Settingswordpress index.php.htaccessbrowser is showing the full address of the postpost can not be seen on the browser404 Not Found error is comming

4

1 回答 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 回答