使用重寫我有這個網址友好的URL配置文件和有關htaccess的
http://example.net/test
但我已經需要
http://example.net/test/info
我在我的htaccess的這段代碼,
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*/([a-zA-Z0-9_-]+)|([a-zA-Z0-9_-]+))$ ./id.php?u=$1
如何我可以使用像鏈接代碼
http://example.net/test/info
你的htacces必須只傳遞完整的請求字符串到你的「u」get參數中。而且你必須解析這個字符串,並將其分配給它。例如分割爲「/」和「?」。而且您必須是所有網站頁面的單一訪問點(index.php)。 – Deep
是的,我知道這個鏈接工作example.net /深,但我需要這個鏈接關於用戶example.net/deep/info。 –