我遇到了我在ubuntu服务器上托管的WordPress站点的永久链接问题。每当我保存永久链接设置时,我都会收到修改.htaccess文件的错误并更新下面提供的设置,
<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>
我做了这个活动,但链接不起作用我收到404错误。 在更新此文件链接之前,用于处理index.php /的url 此.htaccess文件放在我已安装文件夹的文件夹中。
这方面的任何意见都是值得注意的。 提前谢谢。
答案 0 :(得分:0)
如果这个.htaccess文件位于/ wordpress目录中,那么将其移动到上面的目录,它应该可以工作。