當用戶輸入URL像htaccess的重寫規則
http://example.com/app/abcd123/
我想從
http://example.com/app/index.php?param=abcd123
顯示姬網頁,不必更改瀏覽器的URL。
我把.htaccess文件的應用程序文件夾中的代碼
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/index.php [NC]
RewriteCond %{QUERY_STRING} ^param=(.*)
RewriteRule (.*) http://example.com/app/%1? [R=301,L]
是'/ app' /一個真正的目錄? – anubhava
是的,我把我的htaccess文件 – moonvader