我在 Windows 7 上使用 Xampp 1.8.3、PHP 版本 5.5.3 开发了一个网站。我有一个托管帐户来测试我的网站。
托管详情如下:
Apache version 2.4.6
PHP version 5.3.27
MySQL version 5.5.32-cll
Architecture x86_64
Operating system Linux
password_hash()
andverify_password()
函数属于 PHP 5.5,当然这些在旧的 PHP 版本中不可用。
为了解决这个问题,我的托管人员要求我在 .htaccess 文件中添加这些行。
# Use PHP 5.5
AddType application/x-httpd-php55 .php
现在我在服务器上的 .htaccess 文件看起来像这样。
# PHP 5.5
AddType application/x-httpd-php55 .php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
如果我的主机有 Linux 操作系统并且我在 Windows 7 上开发我的网站,是否有任何问题?
在我进行这些更改后,它仍然无法正常工作。我google了很多,但找不到解决方案。请帮助我并建议我出了什么问题。如果你想查看我的网站,这里有一个链接我的网站链接
请帮帮我。谢谢!