Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 打开伪静态以后就报 No input file specified.

[复制链接]
hollechina 发表于 2017-11-23 14:06:31 | 显示全部楼层 |阅读模式
我的网站 http://www.91jinglao.com/ 打开了伪静态以后就报 No input file specified.

我用了如下操作方式:http://www.nwpit.com/html/article/91.html
也试过用这个方法:http://bbs.qcloud.com/forum.php?mod=viewthread&tid=11704&page=1#pid44309
我的问题基本和他差不多一样:http://bbs.qcloud.com/thread-18153-1-1.html

在同一台服务器上面的这个网站:http://www.5qv.net/
也用了伪静态却是正常的:http://www.5qv.net/goods/view-quan-1379595.html

是我哪里设置不对吗?? 哪位大神给解答 解答

谢谢 谢谢 谢谢 在线等…………
xxbnet 发表于 2017-11-23 14:16:59 | 显示全部楼层
应该是你服务器环境 配置的问题吧,你什么环境配置
回复

使用道具 举报

 楼主| hollechina 发表于 2017-11-23 14:23:08 | 显示全部楼层
xxbnet 发表于 2017-11-23 14:16
应该是你服务器环境 配置的问题吧,你什么环境配置

这个是服务器的基本情况

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

xxbnet 发表于 2017-11-23 14:30:52 | 显示全部楼层
你伪静态规则 复制论坛后台的试试,可能规则的问题
回复

使用道具 举报

 楼主| hollechina 发表于 2017-11-23 14:36:14 | 显示全部楼层
xxbnet 发表于 2017-11-23 14:30
你伪静态规则 复制论坛后台的试试,可能规则的问题

复制过啦不行
回复

使用道具 举报

 楼主| hollechina 发表于 2017-11-23 14:38:21 | 显示全部楼层
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
       <rewrite>
        <rules>
                <rule name="portal_topic">
                        <match url="^(.*/)*topic-(.+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/portal.php\?mod=topic&topic={R:2}&{R:3}" />
                </rule>
                <rule name="portal_article">
                        <match url="^(.*/)*article-([0-9]+)-([0-9]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/portal.php\?mod=view&aid={R:2}&page={R:3}&{R:4}" />
                </rule>
                <rule name="forum_forumdisplay">
                        <match url="^(.*/)*forum-(\w+)-([0-9]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/forum.php\?mod=forumdisplay&fid={R:2}&page={R:3}&{R:4}" />
                </rule>
                <rule name="forum_viewthread">
                        <match url="^(.*/)*thread-([0-9]+)-([0-9]+)-([0-9]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/forum.php\?mod=viewthread&tid={R:2}&extra=page%3D{R:4}&page={R:3}&{R:5}" />
                </rule>
                <rule name="group_group">
                        <match url="^(.*/)*group-([0-9]+)-([0-9]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/forum.php\?mod=group&fid={R:2}&page={R:3}&{R:4}" />
                </rule>
                <rule name="home_space">
                        <match url="^(.*/)*space-(username|uid)-(.+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/home.php\?mod=space&{R:2}={R:3}&{R:4}" />
                </rule>
                <rule name="home_blog">
                        <match url="^(.*/)*blog-([0-9]+)-([0-9]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/home.php\?mod=space&uid={R:2}&do=blog&id={R:3}&{R:4}" />
                </rule>
                <rule name="forum_archiver">
                        <match url="^(.*/)*(fid|tid)-([0-9]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/index.php\?action={R:2}&value={R:3}&{R:4}" />
                </rule>
                <rule name="plugin">
                        <match url="^(.*/)*([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+).html\?*(.*)$" />
                        <action type="Rewrite" url="{R:1}/plugin.php\?id={R:2}:{R:3}&{R:4}" />
                </rule>
        </rules>
</rewrite>

<directoryBrowse enabled="false" />
        <defaultDocument>
            <files>
                <clear />
                <add value="index.php" />
                <add value="index.html" />
                <add value="Default.htm" />
                <add value="index.htm" />
            </files>
        </defaultDocument>
                <httpErrors>
            <remove statusCode="404" subStatusCode="-1" />
            <error statusCode="404" prefixLanguageFilePath="" path="/404.html" responseMode="ExecuteURL" />
        </httpErrors>
                <security>
            <requestFiltering allowDoubleEscaping="true"></requestFiltering>
        </security>
    </system.webServer>
</configuration>
我用着是这个
这个的我也试过也是不行 http://bbs.qcloud.com/forum.php?mod=viewthread&tid=11704&page=1#pid44309


回复

使用道具 举报

xxbnet 发表于 2017-11-23 14:39:25 | 显示全部楼层
那你百度下 按照网上的修改下php.ini试试了
回复

使用道具 举报

 楼主| hollechina 发表于 2017-11-23 14:45:12 | 显示全部楼层
本帖最后由 hollechina 于 2017-11-23 14:46 编辑
xxbnet 发表于 2017-11-23 14:39
那你百度下 按照网上的修改下php.ini试试了
cgi.fix_pathinfo=0  原来是 cgi.fix_pathinfo=1 改成1 到时正常了 问题是会有一个漏洞导致论坛常常被攻击我才改成 0 的。 问题是改成0 以后另一个程序的伪静态是正常的。
回复

使用道具 举报

Failure 发表于 2017-11-23 14:48:39 | 显示全部楼层
建议每个网站独立应用池  
回复

使用道具 举报

 楼主| hollechina 发表于 2017-11-23 14:52:12 | 显示全部楼层
Failure 发表于 2017-11-23 14:48
建议每个网站独立应用池


程序应用池是独立的,每个网站有单独的应用池(服务器上就只放了三个应用)

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-29 13:47 , Processed in 0.019834 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表