我想將/services/websites.html重定向到我的head目錄中的websites.html。這樣我就可以將我的所有文件放在head目錄中,這樣所有的css文件和類似的東西都可以正確鏈接。我想:.htaccess模擬目錄
重寫規則^服務/ websites.html $ websites.html
但是,這並不工作。我覺得這很簡單,但我在Google上找不到任何東西。
你能幫我嗎?
我想將/services/websites.html重定向到我的head目錄中的websites.html。這樣我就可以將我的所有文件放在head目錄中,這樣所有的css文件和類似的東西都可以正確鏈接。我想:.htaccess模擬目錄
重寫規則^服務/ websites.html $ websites.html
但是,這並不工作。我覺得這很簡單,但我在Google上找不到任何東西。
你能幫我嗎?
這是你需要把你的.htaccess代碼:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase/
RewriteRule ^services/(.*)$ $1 [L,NC]
非常感謝您的幫助! – Andre 2012-02-28 19:05:52
不客氣,很高興它解決了。 – anubhava 2012-02-28 19:44:57