gpt4 book ai didi

wordpress - 在自己的目录中安装 WordPress 但永久链接失败

转载 作者:行者123 更新时间:2023-12-04 17:12:28 26 4
gpt4 key购买 nike

我在 EC2 上安装了 WordPress,位于 /var/www/html/wordpress .我按照 WordPress 指南将 index.php 和 .htaccess 复制到 root,即 /var/www/html , 并修改了 index.php 和管理面板中的设置。如果我只坚持默认链接,它会很好地工作,例如:http://www.cubcanfly.com/?p=5 ,但是其他永久链接选项失败,实际上所有永久链接选项都失败了。

我的 .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>

/etc/httpd/conf/httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so

没有评论。

提前致谢

最佳答案

最后我找到了问题所在。它是位于/etc/httpd/conf/httpd.conf 中的httpd.conf 中的AllowOverride 选项,“sudo find/-name httpd.conf -print”可以轻松找到它。
我更改了我可以在文件中找到的任何 AllowOverride NONE->ALL。即使没有对 .htaccess 做任何更改,它也能正常工作

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

这个 .htaccess 在我的主机上工作,其中 wordpress 安装在它自己的目录中。

谢谢@adlawson @Will,没有你,我找不到问题。

http://codex.wordpress.org/Using_Permalinks即使 wordpress 安装在子目录中,这个官方指南也足以使用永久链接。

关于wordpress - 在自己的目录中安装 WordPress 但永久链接失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6715609/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com