我試圖實現漂亮的網址。 我用PHP編寫的所有東西都能正常工作。我需要通過index.php處理每個請求。重定向模式重寫甚至絕對url
例如website/page/search/question/dogs將被索引處理。 但是website.com/templates/header.tpl會開始下載文件。
我想通過index.php處理甚至地址到另一個文件。
在.htaccess我有。
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^.*$ ./index.php
我怎樣才能hande甚至絕對url通過index.php文件?
你是什麼意思亨利?你能解釋一下在你的問題中「重定向」是什麼意思? – hakre 2012-01-02 13:17:24
我的意思是用戶類型地址「example.com/hello.php」,但服務器不會調用hello.php,但index.php(和.php?id =/page/view後的參數將可用於index.php) – Jindra 2012-01-02 13:23:39
Where應該''id'參數的值是從哪裏來的? – hakre 2012-01-02 13:32:15