我試圖實現一些htaccess重寫規則。但是在htaccess中不是一個職業。.htaccess重寫規則與DocumentRoot子域
我有一個子域網關(如描述:.htaccess and rewrite sub domains)
現在我想用搜索引擎友好的URL。在這種情況下,網關有一些子文件夾,即電子郵件。
http://gateway.example.com/email/Param1/Param2/
此網址應該重寫http://gateway.example.com/email/index.php?hash=Param1&hash2=Param2。
在電子郵件文件夾我已經創建了包含以下內容的.htaccess文件:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.* - [L]
RewriteRule ^/(.*)/(.*)/ index.php?hash=$1&hash2=$2
當請求http://gateway.example.com/email/Param1/Param2/現在我得到一個404什麼是錯的規則?
確定,所以去http://gateway.example.com首先打算如何工作?你的文檔根源是什麼? –
@PanamaJack是的,它確實有效。 –