两个变量为CSS和图像网址获得404

时间:2014-07-26 07:38:31

标签: php html css apache .htaccess

我正在服务器上处理简单的数据库项目。需要通过在URL上传递参数来更新我的数据库。

例如:

http://example.com/3000

无需更新数据库并显示值3000

如果我使用

http://example.com/3000/update

需要更新我的数据库...

然而我的.htaccess和php脚本工作正常......但是我的CSS和图像文件在更新URL时无效,我在CSS / JS文件上出现了404错误。

我检查了css的URL,它可以像这样重写

http://example.com/3000/theme.css

实际网址

http://example.com/theme.css

我的.HTACCESS文件

Options +FollowSymLinks
RewriteEngine on
RewriteBase /

<IfModule mod_rewrite.c>
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule ^(.*)/update$ index.php?result=$1&update=true [L] 
</IfModule>

<IfModule mod_rewrite.c>
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule ^(.*)$  db.php?result=$1 [L] 
</IfModule>

如何解决这个问题..在htaccess文件上做了什么错误..

0 个答案:

没有答案