我在根文件夹和子文件夹中安装了WordPress。我可以访问子域中WordPress站点的主页,但永久链接不起作用 - 错误404.我试图重置永久链接,但它没有帮助。我找不到任何.htaccess文件,所以我自己创建了一个并将其放在子文件夹目录中:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /projects/bigsargefitness/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /projects/bigsargefitness/index.php [L]
</IfModule>
以下是子文件夹WordPress网站的链接: http://ninahortendesigns.com/projects/bigsargefitness/
我已将数据库选项设置为上述方向。
感谢您的帮助。
答案 0 :(得分:2)
您需要查看以下几点:
以下是编辑的第一个链接中的代码,以便它可以与您的网站一起使用,但如果您有其他规则,则只应在评论下插入该行。
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
# Include in the next line all folders to exclude
RewriteCond %{REQUEST_URI} !(projects) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
如果您有自定义规则,请仅插入这些行
# Include in the next line all folders to exclude
RewriteCond %{REQUEST_URI} !(projects) [NC]
假设您是设计师并正在上传您已构建的网站示例,则下次将新网站上传到wp1 / projects / sub-directory时,您只需执行第2步< / p>
答案 1 :(得分:1)
当您请求的资源或路径无法访问时,会出现错误404。在这种情况下,可能是因为URL重写不能正常工作,因此永久链接请求仍然被定向到请求的路径(例如/ projects / bigsargefitness / your-category / your-post-name)重写的路径(即/projects/bigsargefitness/index.php)。
以下解决方案假设您使用Debian / Ubuntu,否则原则应保持不变。
首先,确保已安装重写引擎:
sudo a2enmod rewrite
然后,通过编辑/添加文件/etc/apache2/sites-available/your-site.conf
中的以下行,确保允许引擎进入子目录:
<Directory /var/www/projects/bigsargefitness/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
此处的关键是确保该行显示AllowOverride All
而不是AllowOverride None
。
最后,重新启动服务器:
sudo service apache2 restart
如果有帮助,请告诉我。