2016-01-07 157 views

回答

2

通常你會做這個使用.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]