0
RewriteBase/
RewriteRule ^postid([0-9]+)\/([a-zA-Z\-]+).html$ ?post_id=$1
postid1/name-of-post.html
的問題是,現在的.htaccess每個前綴相對URL與postid1作爲文件夾名稱。
我錯過了什麼?我怎樣才能解決這個問題?
RewriteBase/
RewriteRule ^postid([0-9]+)\/([a-zA-Z\-]+).html$ ?post_id=$1
postid1/name-of-post.html
的問題是,現在的.htaccess每個前綴相對URL與postid1作爲文件夾名稱。
我錯過了什麼?我怎樣才能解決這個問題?
這不是.htaccess的做法 - 瀏覽器認爲它在一個新文件夾中。沒有什麼可以在內部完成的.htaccess可以解決這個問題,反正沒有任何理由。
使用相對路徑:
../images/image.jpg
或絕對路徑
http://www.domain.com/images/image.jpg
代替。
非常感謝。我結束了使用絕對的URL。 – BantuCoder 2012-01-30 00:49:59