好吧,我對.htaccess有點麻煩,因爲我是初學者。這是我想要完成的。htaccess - 用兩條規則重寫url
URL DESIRED: example.com/package/forest/
我現在擁有的一切:
RewriteRule ^package/forest/$
/deep/file/do_stuff.php?action=package&location=forest [R=301,QSA,L]
這是工作的打算,當你去example.com/package/forest你會得到由do_stuff.php生成的頁面。我無法得到的難題是,如果我想發送額外的GET變量到do_stuff頁面,但保持相同的URL。
開頭的URL: example.com/package/forest/list/5/2015-10-03
STILL所需的URL: example.com/package/forest
區別在於,我想重寫或重定向,不確定這個詞,是
/deep/file/do_stuff.php?action=package&location=forest&pictures=5&date=2015-10-03
這次。
不知道如何堆棧規則,以便我最終使用相同的URL,無論它們是否傳遞額外的變量。