固定链接在Linux上的Apache中不起作用

时间:2017-01-24 作者:ali

我试图设置自定义永久链接,但出现错误404。以下是我尝试过的设置:

我已经完成了设置>永久链接>自定义并添加了/%category%/%postname%/. 它不起作用。

验证了我的内容。htacces文件:

**# 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**
我使用了一个插件然而,对于我创建的类别,我仍然收到一个404错误页面。谁能帮帮我吗?

1 个回复
SO网友:Chittaranjan

我不确定你正在使用的插件,但上面的permalink结构对我很有用。这是我使用的代码。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
请注意,我必须启用mod_rewrite 模块以使其工作。启用后,请确保重新启动apache。

相关推荐

Permalinks - Archives

WordPress文档说:WordPress offers you the ability to create a custom URL structure for your permalinks and archives. https://codex.wordpress.org/Settings_Permalinks_Screen 我看到此屏幕将如何为特定帖子/页面创建永久链接,但我没有看到此设置屏幕上关于如何为存档帖子/页面创建链接的任何其他详细信息。有人能澄清一下吗?