我使用XAMPP在phpMyAdmin中创建了一个包含多个表的网站,多个页面和文件(html,php,jquery,javascript,css)。
我将所有文件保存在XAMPP文件夹中的htdocs文件夹中,并创建了一个.htaccess文件:
RemoveHandler .html .htm
AddType application / x-httpd-php .html .htm
和其中的其他行(不以任何方式干扰这两行。 我尝试过这两行和没有这两行。
我是XAMPP的新手。
在为网站创建所有文件和页面时,一切都很完美。我完成了网站。但是,一旦我将文件(包含XAMPP和我的所有网站文件)复制到我们的服务器,PHP就不会运行。它不会在服务器上运行,它不会运行存储文件的计算机。
HTML文件注释掉一些PHP,其他PHP作为内容写入网页 PHP文件显示所有PHP代码
PHP正常运行,直到我复制了包含XAMPP的文件夹
我用<?php开始文件(未缩短<?)和?>关闭文件。
非常感谢任何帮助。
答案 0 :(得分:0)
mmm ......当我想将我的项目从我的笔记本电脑复制到另一个时,只复制我保存项目的目录....我的方法是在我要复制的计算机中安装新的xampp然后你去......
C:/xampp/htdocs/(find your project directory and copy the entire directory)
在其他计算机的新xampp中粘贴到同一个rute中
C:/xampp/htdocs/(here you paste your work)
然后你可以从xampp导出你的表并将文件加载到新的xampp ...尝试你的安装让我们把xampp放到一些测试的东西
将其复制到新项目中并创建文件作为索引
复制此
<div>
<h3 align="center"><strong align="center">Bienvenido</strong></h3>
<table align="left" width="50px">
<tr>
<td width="20px">
<h3 align="right" style="font-size:18px"><strong align="center">Bienvenido 1</strong></h3>
</td>
<td>
<h3 align="left" style="font-size:18px">hola 1</h3>
</td>
</tr>
<tr>
<td width="20px">
<h3 align="right" style="font-size:18px"><strong align="center">Bienvenido 2</strong></h3>
</td>
<td>
<h3 align="left" style="font-size:18px">Hola 2</h3>
</td>
</tr>
</table>
<?php echo "hoja de pruebaaaaaa";?>
试试这个,看看会发生什么......