2016-01-07 37 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]