2014-04-17 109 views
1

我哈瓦的文件夾 - 職業 - 我只希望該文件夾的文件做了改寫,例如:htaccess的 - 只重寫文件夾裏面

mydomain.com/file.html - >其出該文件夾

mydomain.com/folerone/file.html - >其移出文件夾

mydomain.com/careers/ - >此調用index.php文件

mydomain.com/careers/item - >這將調用帶有$ _GET變量項目的文件index.php

mydomain.com/careers/item2 - >這就要求與$ _GET變量ITEM2 index.php文件

我實際的.htaccess是:

RewriteEngine on 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ([^/]+) index.php?itemid=$1 [QSA] 

這不是工作。可有人幫幫我?

回答

0

放在.htaccess文件裏面的文件夾事業

RewriteRule item([0-9]*)?$ index.php?itemid=item$1 [QSA]

+0

是的,我有文件夾內的.htaccess。 – rennyrocha

+0

@rennyrocha不要編輯問題後,有人已經回答,我編輯我的解決方案 – fiction

+0

Ok @fiction,我編輯,因爲其他用戶可能誤會我的問題..謝謝你的答案,這並沒有工作..然而, 然而,與此它工作! 'RewriteRule item([0-9] *)?$ /index.php?itemid=item$1 [QSA]' – rennyrocha