未找到打字3登录在此服务器上未找到请求的URL

  • 本文关键字:请求 URL 服务器 登录 apache
  • 更新时间 :
  • 英文 :


我是打字3的新手。安装后和登录到管理员后,我一直得到

Not Found 
The requested URL was not found on this server.

我看到Typo3安装的解决方案以URL未找到结束,但无法确定要修改哪个.htaccess文件。有许多.htaccess文件。

我在前端和管理上都面临找不到错误。我安装了最新版本。

我按照这里的说明安装了typed3

https://docs.typo3.org/m/typo3/tutorial-getting-started/11.5/en-us/Installation/Install.html#install

感谢@thomas-löffler的指出。

事实证明,apache配置存在问题。解决方案是在httpd.conf 中添加以下内容

AllowOverride All
Order deny,allow
Allow from all

之后不要忘记重新启动apache。

$sudo vi /etc/apache2/httpd.conf
....
DocumentRoot "/Users/imac/ROOT/WebRoot"
<Directory "/Users/imac/ROOT/WebRoot">
#   
# Possible values for the Options directive are "None", "All",
# or any combination of: 
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#   
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#   
# The Options directive is both complicated and important.  Please see 
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#   
Options FollowSymLinks Multiviews
MultiviewsMatch Any 
#   
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   AllowOverride FileInfo AuthConfig Limit
#   
#AllowOverride None

AllowOverride All 
Order deny,allow
Allow from all 
#   
# Controls who can get stuff from this server.
#
Require all granted
</Directory>
......

最新更新