原来是PHPNOW环境测试的本地网站,移植到upupw下,php探针检测正常。测试地址:127.0.0.48,内页文件无法显示,是不是伪静态原因?后台也无法进入。
|
|
沙发#
发布于:2014-05-27 08:22
图片:QQ截图20140527080703.jpg |
|
板凳#
发布于:2014-05-27 08:23
php探针检测正常说明环境已经正常运行,请确认你使用的是apache内核nginx内核还是K内核内核的什么版本。
如果是apache版的话php5.3及以上系列伪静态文件.htaccess中不能含有-indexs这个规则,如果有会冲突去掉即可。 另外你的程序是否需要Zend Optimizer解密,如果需要请使用UPUPW APACHE PHP5.2.17经典终极版。 |
|
地板#
发布于:2014-05-27 08:26
根据截图判断应该是你的网站后台网址还没更改,导致路径错误,图片无法显示,css无法正确调用。
|
|
4楼#
发布于:2014-05-27 08:29
|
|
5楼#
发布于:2014-05-27 08:42
|
|
6楼#
发布于:2014-05-27 09:17
|
|
7楼#
发布于:2014-05-27 09:55
动力火锅:请把程序直接拷贝到htdocs目录内用127.0.0.1访问。<vh name='UPUPW测试' doc_root='E:\upupw\vhosts\48tcjiaju_cn' log_file='E:\upupw\Logs\127.0.0.48_access.log' log_rotate_size='33554432' logs_day='30' logs_size='1073741824' inherit='on' app='1' app_share='0' htaccess='.htaccess' max_worker='8'> <map file_ext='php' extend='cmd:PHP5.3.X' allow_method='*'/> <host>127.0.0.48</host> </vh> 图片:QQ截图20140527095439.jpg |
|
8楼#
发布于:2014-05-27 15:30
|
|
9楼#
发布于:2014-05-28 16:13
动力火锅:恩,你环境启动完全没问题,php页面也能打开,看你截图就是图片没有显示,另外页面css没有加载。除了路径问题想不到别的了。把程序直接拷贝到htdocs目录内用127.0.0.1访问回到原帖删除了伪静态规则文件,可以正常访问: <IfModule mod_rewrite.c> RewriteEngine on RewriteBase /mobile RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^mobile\/(.*)$ mobile/index.php?$1 [QSA,L] RewriteBase /admin RewriteRule ^admin\/(.*)$ admin/$1 [QSA,L] RewriteBase /attachs RewriteRule ^attachs\/(.*)$ attachs/$1 [QSA,L] RewriteBase /themes RewriteRule ^themes\/.*\.(html|xml) [F,L] RewriteRule ^themes\/(.*)$ themes/$1 [QSA,L] RewriteBase /static RewriteRule ^static\/(.*)$ static/$1 [QSA,L] </IfModule> <IfModule mod_rewrite.c> RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php$2 [QSA,L] </IfModule> <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule> |
|
10楼#
发布于:2014-05-28 19:38
这个静态规则该如何修改?
|
|