2

那是我的 iframe:

<iframe allowtransparency="true" class="igm" src="/flash/dewplayer-vol.xml&
amp;container=enterprise&amp;view=default&amp;lang=en&amp;country=ALL&amp;sanitize=0&
amp;v=cb90d5949f2275bc&amp;up_CCOL=%23d1dae3&amp;up_START=No&
amp;up_MP3=http://www.youtube-mp3.org/get?video_id=z0FERtqhwHs&
h=6a29a4973a0431d2638ba3f5a1aecfeb&r=1373776845504&amp;up_LOOP=No&
amp;libs=analytics:core:flash&amp;mid=55&amp;rpctoken=-1666220716119396559" 
frameborder="0" height="400" scrolling="yes" width="500"></iframe>

但是当我打开我的页面时,它会出现:

禁止的

您无权访问此服务器上的 /flash/dewplayer-vol.xml&container=enterprise&view=default&lang=en&country=ALL&sanitize=0&v=cb90d5949f2275bc&up_CCOL=#d1dae3&up_START=No&up_MP3= http://www.youtube-mp3.org/get .

Apache/2.2.8 (Win32) PHP/5.2.6 服务器在 212.43.43.254 端口 80

那是我的 httpd.conf 文件:

NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot C:\AppServ\www\site\public
 </VirtualHost>

<Directory "C:/AppServ/www/site/public">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
4

1 回答 1

1

您必须在 Web 服务器中执行一些步骤,然后扔掉所有这些

1.查找httpd.conf文件(通常您会在名为 conf、config 或类似内容的文件夹中找到它)

2.httpd.conf文件内取消注释 LoadModule rewrite_module 行modules/mod_rewrite.so(从行前删除井号'#')

还要找到 ClearModuleList 行未注释,然后找到并确保 AddModule mod_rewrite.c 行没有被注释掉。

你还有更多的查询然后去这个链接

如果您以默认方式设置虚拟主机,即

<VirtualHost *:80>
   DocumentRoot "D:/Users/user/www/yourwebsite.dev/public"
   ServerName .local

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development

   <Directory "D:/Users/user/www/yourwebsite.dev/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>

</VirtualHost>

您可以通过以下方式访问公共目录:

http://yourwebsite.dev/ 和公共目录中的文件:

http://yourwebsite.dev/filename.ext

这都是关于 DocumentRoot 的。

我希望这对你有帮助。

于 2013-07-15T10:56:19.720 回答