马上注册,免费下载更多dz插件网资源。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
【亮剑】求职招聘商业版伪静态规则:
Apache Web Server(独立主机用户):
- #首页
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^(.*)/job\.html$ $1/plugin.php?id=aljzp&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^(.*)/job_([0-9]+)\.html$ $1/plugin.php?id=aljzp&act=view&lid=$2&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^(.*)/job_resume\.html$ $1/plugin.php?id=aljzp&act=resumes&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^(.*)/job_resume_([0-9]+)\.html$ $1/plugin.php?id=aljzp&act=resumes&uid=$2&%1
复制代码
Apache Web Server(虚拟主机用户):
- #首页
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^job\.html$ plugin.php?id=aljzp&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^job_([0-9]+)\.html$ plugin.php?id=aljzp&act=view&lid=$1&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^job_resume\.html$ plugin.php?id=aljzp&act=resumes&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^job_resume_([0-9]+)\.html$ plugin.php?id=aljzp&act=resumes&uid=$1&%1
复制代码
IIS Web Server(独立主机用户):
- RewriteRule ^(.*)/job\.html(\?(.*))*$ $1/plugin\.php\?id=aljzp&$3
- RewriteRule ^(.*)/job_([0-9]+)\.html(\?(.*))*$ $1/plugin\.php\?id=aljzp&act=view&lid=$2&$4
- RewriteRule ^(.*)/job_resume\.html(\?(.*))*$ $1/plugin\.php\?id=aljzp&act=resumes&$3
- RewriteRule ^(.*)/job_resume_([0-9]+)\.html(\?(.*))*$ $1/plugin\.php\?id=aljzp&act=resumes&uid=$2&$4
复制代码
IIS7 Web Server(独立主机用户):
- <rule name="aljzp_index">
- <match url="^(.*/)*job.html\?*(.*)$" />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=aljzp&{R:2}" />
- </rule>
- <rule name="aljzp_view">
- <match url="^(.*/)*job_([0-9]+).html\?*(.*)$" />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=aljzp&act=view&lid={R:2}" />
- </rule>
- <rule name="aljzp_resume_index">
- <match url="^(.*/)*job_resume.html\?*(.*)$" />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=aljzp&resumes&{R:2}" />
- </rule>
- <rule name="aljzp_resume_view">
- <match url="^(.*/)*job_resume_([0-9]+).html\?*(.*)$" />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=aljzp&resumes&uid={R:2}" />
- </rule>
复制代码
Nginx Web Server:
- rewrite ^([^\.]*)/job\.html$ $1/plugin.php?id=aljzp last;
- rewrite ^([^\.]*)/job_([0-9]+)\.html$ $1/plugin.php?id=aljzp&act=view&lid=$2 last;
- rewrite ^([^\.]*)/job_resume\.html$ $1/plugin.php?id=aljzp&act=resumes last;
- rewrite ^([^\.]*)/job_resume_([0-9]+)\.html$ $1/plugin.php?id=aljzp&act=resumes&uid=$2 last;
复制代码
©DZ插件网所发布的一切资源仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。 网站部分内容来源于网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,得到更好的正版服务。 您在本站任何的赞助购买、下载、查阅、回复等行为等均表示接受并同意签订《DZ插件网免责声明协议》。 如有侵权请邮件与我们联系处理: discuzaddons@vip.qq.com 并出示相关证明以便删除。敬请谅解!
|
|