Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のサイトは、多くの他のサイトからcssファイルをロードします:
../../1/images/pager1.png ../../2/images/pager2.png ... ../../n/images/pagern.png
交換したい
../../random/images/
に:
/images/
PHPでのやり方
ありがとう
これを試して :
<?php $filename = "filename.css"; $file = file_get_contents($filename); $file = preg_replace("#\.\./.*/images/#", "/images/", $file); file_put_contents($filename, $file);