请高手帮我把.Htaccess转换成httpd.ini 代码如下 30
<IfModulemod_rewrite.c>RewriteEngineOnRewriteBase/RewriteCond%{REQUEST_FILENAME}!-f[N...
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?tupian/(.*).jpg$ /pic.php?r=1&img=/tupian/$1.jpg [L]
# RewriteRule ^/?pic/?allimg/?(\w+)/?(\w+)-(\w+).jpg$ /pic.php?r=2&img=/pic/allimg/$1/$2-$3.jpg [L]
# RewriteRule ^/?pic/(.*)-(.*).jpg$ /pic.php?r=2&img=/pic/$1-$2.jpg [L]
RewriteRule ^/?pic/(.*).jpg$ /pic.php?r=2&img=/pic/$1.jpg [L]
RewriteRule ^/?beautiful/$ /list.php?cat=beautiful [L]
RewriteRule ^/?sexy/$ /list.php?cat=sexy [L]
RewriteRule ^/?model/$ /list.php?cat=model [L]
RewriteRule ^/?stars/$ /list.php?cat=stars [L]
RewriteRule ^/?hd/$ /list.php?cat=hd [L]
RewriteRule ^/?beautiful$ /list.php?cat=beautiful [L]
RewriteRule ^/?sexy$ /list.php?cat=sexy [L]
RewriteRule ^/?model$ /list.php?cat=model [L]
RewriteRule ^/?stars$ /list.php?cat=stars [L]
RewriteRule ^/?hd$ /list.php?cat=hd [L]
RewriteRule ^/?beautiful/list_(.*)_(.*).html$ /list.php?cat=beautiful&page=list_$1_$2.html [L]
RewriteRule ^/?model/list_(.*)_(.*).html$ /list.php?cat=model&page=list_$1_$2.html [L]
RewriteRule ^/?sexy/list_(.*)_(.*).html$ /list.php?cat=sexy&page=list_$1_$2.html [L]
RewriteRule ^/?stars/list_(.*)_(.*).html$ /list.php?cat=stars&page=list_$1_$2.html [L]
RewriteRule ^/?hd/list_(.*)_(.*).html$ /list.php?cat=hd&page=list_$1_$2.html [L]
#RewriteRule ^/?beautiful/(.*)_(.*).html$ /view.php?cat=beautiful&page=$1_$2.html [L]
#RewriteRule ^/?model/(.*)_(.*).html$ /view.php?cat=model&page=$1_$2.html [L]
#RewriteRule ^/?sexy/(.*)_(.*).html$ /view.php?cat=sexy&page=$1_$2.html [L]
#RewriteRule ^/?stars/(.*)_(.*).html$ /view.php?cat=stars&page=$1_$2.html [L]
#RewriteRule ^/?hd/(.*)_(.*).html$ /view.php?cat=hd&page=$1_$2.html [L]
RewriteRule ^/?beautiful/(.*).html$ /view.php?cat=beautiful&page=$1.html [L]
RewriteRule ^/?model/(.*).html$ /view.php?cat=model&page=$1.html [L]
RewriteRule ^/?sexy/(.*).html$ /view.php?cat=sexy&page=$1.html [L]
RewriteRule ^/?stars/(.*).html$ /view.php?cat=stars&page=$1.html [L]
RewriteRule ^/?hd/(.*).html$ /view.php?cat=hd&page=$1.html [L]
</IfModule> 展开
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?tupian/(.*).jpg$ /pic.php?r=1&img=/tupian/$1.jpg [L]
# RewriteRule ^/?pic/?allimg/?(\w+)/?(\w+)-(\w+).jpg$ /pic.php?r=2&img=/pic/allimg/$1/$2-$3.jpg [L]
# RewriteRule ^/?pic/(.*)-(.*).jpg$ /pic.php?r=2&img=/pic/$1-$2.jpg [L]
RewriteRule ^/?pic/(.*).jpg$ /pic.php?r=2&img=/pic/$1.jpg [L]
RewriteRule ^/?beautiful/$ /list.php?cat=beautiful [L]
RewriteRule ^/?sexy/$ /list.php?cat=sexy [L]
RewriteRule ^/?model/$ /list.php?cat=model [L]
RewriteRule ^/?stars/$ /list.php?cat=stars [L]
RewriteRule ^/?hd/$ /list.php?cat=hd [L]
RewriteRule ^/?beautiful$ /list.php?cat=beautiful [L]
RewriteRule ^/?sexy$ /list.php?cat=sexy [L]
RewriteRule ^/?model$ /list.php?cat=model [L]
RewriteRule ^/?stars$ /list.php?cat=stars [L]
RewriteRule ^/?hd$ /list.php?cat=hd [L]
RewriteRule ^/?beautiful/list_(.*)_(.*).html$ /list.php?cat=beautiful&page=list_$1_$2.html [L]
RewriteRule ^/?model/list_(.*)_(.*).html$ /list.php?cat=model&page=list_$1_$2.html [L]
RewriteRule ^/?sexy/list_(.*)_(.*).html$ /list.php?cat=sexy&page=list_$1_$2.html [L]
RewriteRule ^/?stars/list_(.*)_(.*).html$ /list.php?cat=stars&page=list_$1_$2.html [L]
RewriteRule ^/?hd/list_(.*)_(.*).html$ /list.php?cat=hd&page=list_$1_$2.html [L]
#RewriteRule ^/?beautiful/(.*)_(.*).html$ /view.php?cat=beautiful&page=$1_$2.html [L]
#RewriteRule ^/?model/(.*)_(.*).html$ /view.php?cat=model&page=$1_$2.html [L]
#RewriteRule ^/?sexy/(.*)_(.*).html$ /view.php?cat=sexy&page=$1_$2.html [L]
#RewriteRule ^/?stars/(.*)_(.*).html$ /view.php?cat=stars&page=$1_$2.html [L]
#RewriteRule ^/?hd/(.*)_(.*).html$ /view.php?cat=hd&page=$1_$2.html [L]
RewriteRule ^/?beautiful/(.*).html$ /view.php?cat=beautiful&page=$1.html [L]
RewriteRule ^/?model/(.*).html$ /view.php?cat=model&page=$1.html [L]
RewriteRule ^/?sexy/(.*).html$ /view.php?cat=sexy&page=$1.html [L]
RewriteRule ^/?stars/(.*).html$ /view.php?cat=stars&page=$1.html [L]
RewriteRule ^/?hd/(.*).html$ /view.php?cat=hd&page=$1.html [L]
</IfModule> 展开
展开全部
悬赏分:100 | 离问题结束还有 14 天 2 小时 | 提问者:匿名
将11位的手机号码变为24位的代码,用的是什么加密方式?如何解密?
加密后的样子为QGfJqj1sz94GtO3ye7AAdw==
如何还原为手机号码?
网上的在线base64解密解不了的,混分的绕道~~~问题补充:
如下面wjfcfy朋友所示,通常的base64加密11位数字,是把11位数字变为了16位代码。
而我所要求的是11位数字变为了24位代码的解密。
入手点是不是应该判断,如何将11位数字变为24位代码的,然后尝试进行逆操作。
将11位的手机号码变为24位的代码,用的是什么加密方式?如何解密?
加密后的样子为QGfJqj1sz94GtO3ye7AAdw==
如何还原为手机号码?
网上的在线base64解密解不了的,混分的绕道~~~问题补充:
如下面wjfcfy朋友所示,通常的base64加密11位数字,是把11位数字变为了16位代码。
而我所要求的是11位数字变为了24位代码的解密。
入手点是不是应该判断,如何将11位数字变为24位代码的,然后尝试进行逆操作。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询