2
如何讓這個我的頁面重定向像一個網址:https://mysite/12345到https://mysite/image.php?id=12345縮短URL只包含獲取請求?
我希望能夠縮短的URL只包括GET請求。這可以通過php或.htaccess文件實現嗎?
如何讓這個我的頁面重定向像一個網址:https://mysite/12345到https://mysite/image.php?id=12345縮短URL只包含獲取請求?
我希望能夠縮短的URL只包括GET請求。這可以通過php或.htaccess文件實現嗎?
通常你會做這個使用.htaccess
文件,用條目是這樣的: https://mysite/12345
爲了走另外一條路,有一個:
RewriteEngine On
RewriteBase/
RewriteRule ^([0-9]+)(/?)$ image.php?id=$1 [NC,L]
所以,你可以在格式寫你的網址url如https://mysite/image.php?id=12345
重定向到https://mysite/12345
RewriteCond %{THE_REQUEST} /(?:image\.php)?\?id=([^&\s]+) [NC]
RewriteRule^%1? [R=302,L,NE]