我有与另一个项目共享的资源。我将展示的产品图片存储在我的新项目的文件夹中,我使用symfony ...
在我的symfony项目中,在/web/images
文件夹中,我创建了一个指向存储图片的文件夹的符号链接。我确定符号链接指向的图片文件夹下的每个文件和文件夹的权限都设置为777,任何人都可以访问它们。
一切正常,直到我启用mod重写apache。 /web/images
文件夹上的图片显示完好,购买通过符号链接可访问的内容未显示。我立即认为符号链接是这种行为的原因,我检查了我的网站的apache配置。另外,阅读symfony,我检查了.htaccess
文件夹下的/web
文件并添加了一行:
Options FollowSymLinks
这也不起作用。
这是我的网站配置:
#<VirtualHost mydomain.com>
<VirtualHost *:80>
#ServerAdmin webmaster@localhost
ServerAdmin admin@mydomain.com
ServerName mydomain.com
ServerAlias www.mydomain.com
#DocumentRoot /var/www
DocumentRoot /srv/www/mydomain.com/public_html/
<Directory />
Options FollowSymLinks
#AllowOverride None
AllowOverride All
Order allow,deny
allow from all
</Directory>
#<Directory /var/www/>
<Directory /srv/www/mydomain.com/public_html/>
Options Indexes FollowSymLinks MultiViews
#AllowOverride None
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
#AllowOverride None
AllowOverride All
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
#Options +ExecCGI -MultiViews +FollowSymLinks
Order allow,deny
Allow from all
</Directory>
#ErrorLog ${APACHE_LOG_DIR}/error.log
ErrorLog /srv/www/mydomain.com/logs/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
#CustomLog ${APACHE_LOG_DIR}/access.log combined
CustomLog /srv/www/mydomain.com/logs/access.log combined
Alias /sf /home/victor/projects/vitoquen/tienda/lib/vendor/symfony/data/web/sf
<Directory "/home/victor/projects/vitoquen/tienda/lib/vendor/symfony/data/web/sf">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from All
</Directory>
#Alias /doc/ "/usr/share/doc/"
#<Directory "/usr/share/doc/">
# Options Indexes MultiViews FollowSymLinks
# #AllowOverride None
# AllowOverride All
# Order deny,allow
# Deny from all
# Allow from 127.0.0.0/255.0.0.0 ::1/128
#</Directory>
</VirtualHost>
这是我的.htaccess
:
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
Options FollowSymLinks
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
有什么建议吗?感谢您花时间阅读和回答!!!
修改
我尝试了Znarkus'解决方案,并没有奏效!我认为,这可能意味着符号链接不是问题。
图片文件夹中的文件无需延长即可存储。因为,我不能使用symfony的image_tag()
帮助器,如果没有给出扩展,它会默认将.png
附加到文件名...这就是我在模板中显示图像的方式: / p>
if (strcmp($producto->foto, "SI") == 0) {
echo '<img src="/images/productos/'.$producto->id.'_muestra" width="102" height="84" alt="Imagen de muestra"/>';
} else {
echo '<img src="/images/no_picture.jpg" width="102" height="84" alt="Imagen de muestra"/>';
}
奇怪的是,/images/no_picture.jpg
显示得非常完美。再次感谢您给我的任何帮助!!!