我在尝试将网页添加到我的网站时遇到了一个奇怪的问题。
我实际上是想在我的目录中创建一个“test.php”,但当我尝试访问它时,我已经
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, contact@mywebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
我的.htaccess看起来像这样:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.mywebsite\.com [NC]
RewriteRule (.*) http://mywebsite.com/$1 [R=301,L]
答案 0 :(得分:0)
好了,现在根据您发布的错误,它似乎就像是一个所有权问题。从命令行中显示您的Web目录,看看会发生什么。
chown -R apache: /home/krokoweb/public_html/
注意我使用了用户“apache
”作为示例。使用您的网络用户的任何文件。例如www-data
,apache
,httpd
等
看看它是如何运作的。