我根據手機的用戶代理與htaccess文件提供視頻。到目前爲止,它適用於智能手機,但不適用於Motorola Razor V3等非智能手機。有沒有辦法用php做同樣的事情,所以我可以有htaccess和php文件進行備份?這是我的htaccess文件。電話忽略htaccess文件
RewriteCond <is smartphone>
RewriteRule videos/(.*) mysite.com/videos/high/$1
RewriteCond <is non-smartphone>
RewriteRule videos/(.*) mysite.com/videos/low/$1
祝你好運。有整個庫和專用於移動設備檢測的數據庫。您可能無法在.htaccess規則中高度準確地執行此操作。 –
是的,我知道他們,但這種方式更容易,更簡單。我看到仍然需要一些調整。 – herrdragon