在自己的主机环境里,安装了 Joomla 4 官方原版,运行正常。但是在开启rewrite功能,把网站目录里的 htaccess.txt 文件命名为 .htaccess 后,访问网站,却出现500错误:

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

查看 apache error log 日志:发现确实有错误在 .htaccess 里。

解决:

1、把 .htaccess 文件中 20行的:

Options +FollowSymlinks
注释掉,就是改为下列这一行:

#Options +FollowSymlinks

2、测试了中文文章及标题、分类中文名称及中文url都正常。ok

还没有评论