Hongmu Notes
Home Practical Collection Empire CMS – Gift & Present Theme (Taobao Affiliate WAP + PC Dual-Platform Adaptive Template) 023
Practical Collection empire template

Empire CMS – Gift & Present Theme (Taobao Affiliate WAP + PC Dual-Platform Adaptive Template) 023

Empire CMS – Gift & Present Theme (Taobao Affiliate WAP + PC Dual-Platform Adaptive Template) 023

A gift-giving website

After deployment and testing, the functionality is complete and error-free!

Fix several PHP syntax errors.

Preview:

ad1a1b7183143205

Video Preview

iis pseudo-static

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
	<system.webServer>
		<!--start-php-->
		<handlers>
			<remove name="php_5.2" />
			<remove name="php_5.3" />
			<remove name="php_5.4" />
			<remove name="php_5.5" />
			<remove name="php_5.6" />
			<remove name="php_7.0" />
			<remove name="php_7.1" />
			<add name="php_5.6" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="D:\BtSoft\WebSoft\php\5.6\php-cgi.exe" resourceType="Unspecified" requireAccess="Script" />
		</handlers>
		<!--end-php-->
					
		<!--start-rewrite-->
		<rewrite>
			<rules>
                <rule name="已导入的规则 1">
                    <match url="^item/(\d+)\.html$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/item.php?id={R:1};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 2">
                    <match url="^wenda/(\d+)\.html$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/wenda.php?id={R:1};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 3">
                    <match url="^list/(\d+)/?$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/list.php?classid={R:1};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 4">
                    <match url="^type/(\d+)$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/type.php?id={R:1};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 5">
                    <match url="^topic/(\d+)/?$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/zt.php?id={R:1};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 6">
                    <match url="^guwen/(\d+)-(\d+)-(\d+)-(\d+)/?$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/guwen3.php?s={R:1}&amp;id={R:2}&amp;id2={R:3}&amp;id3={R:4};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 7">
                    <match url="^guwen/(\d+)-(\d+)/?$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/guwen1.php?s={R:1}&amp;id={R:2};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 8">
                    <match url="^zhishi-(\d+)-(\d+).html$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/zhishilist.php?bcid={R:1}&amp;cid={R:2};" appendQueryString="false" />
                </rule>
                <rule name="已导入的规则 9">
                    <match url="^zhishi-(\d+).html$" ignoreCase="false" />
                    <action type="Rewrite" url="/e/zxfcode/zhishilist.php?cid={R:1};" appendQueryString="false" />
                </rule>	
		    </rules>
		</rewrite>	
		<!--end-rewrite-->	
	</system.webServer>
</configuration>

Nginx pseudo-static routing

rewrite ^/item/(\d+)\.html$  /e/zxfcode/item.php?id=$1 last;
 rewrite ^/wenda/(\d+)\.html$  /e/zxfcode/wenda.php?id=$1 last;
 rewrite ^/list/(\d+)/?$ /e/zxfcode/list.php?classid=$1 last;
 rewrite ^/type/(\d+)$ /e/zxfcode/type.php?id=$1 last;
 rewrite ^/tag/(\d+)/?$ /e/zxfcode/taglist.php?id=$1 last;
 
 rewrite ^/topic/(\d+)/?$ /e/zxfcode/zt.php?id=$1 last;
 
 rewrite ^/guwen/(\d+)-(\d+)-(\d+)-(\d+)/?$ /e/zxfcode/guwen3.php?s=$1&id=$2&id2=$3&id3=$4 last;
 rewrite ^/guwen/(\d+)-(\d+)-(\d+)/?$ /e/zxfcode/guwen2.php?s=$1&id=$2&id2=$3 last;
 rewrite ^/guwen/(\d+)-(\d+)/?$ /e/zxfcode/guwen1.php?s=$1&id=$2 last;

 rewrite ^/zhishi-(\d+)-(\d+).html$ /e/zxfcode/zhishilist.php?bcid=$1&cid=$2 last;
 rewrite ^/zhishi-(\d+).html$ /e/zxfcode/zhishilist.php?cid=$1 last;

Apache pseudo-static

RewriteEngine On
ErrorDocument 404 /404.html
Rewritebase /

RewriteRule ^/item/(\d+)\.html$  /e/zxfcode/item.php?id=$1;
RewriteRule ^/wenda/(\d+)\.html$  /e/zxfcode/wenda.php?id=$1;
RewriteRule ^/list/(\d+)/?$ /e/zxfcode/list.php?classid=$1;
RewriteRule ^/type/(\d+)$ /e/zxfcode/type.php?id=$1;
RewriteRulee ^/tag/(\d+)/?$ /e/zxfcode/taglist.php?id=$1;
 
RewriteRule ^/topic/(\d+)/?$ /e/zxfcode/zt.php?id=$1;
 
RewriteRule ^/guwen/(\d+)-(\d+)-(\d+)-(\d+)/?$ /e/zxfcode/guwen3.php?s=$1&id=$2&id2=$3&id3=$4;
RewriteRulee ^/guwen/(\d+)-(\d+)-(\d+)/?$ /e/zxfcode/guwen2.php?s=$1&id=$2&id2=$3;
RewriteRule ^/guwen/(\d+)-(\d+)/?$ /e/zxfcode/guwen1.php?s=$1&id=$2;

RewriteRule ^/zhishi-(\d+)-(\d+).html$ /e/zxfcode/zhishilist.php?bcid=$1&cid=$2;
RewriteRule ^/zhishi-(\d+).html$ /e/zxfcode/zhishilist.php?cid=$1;
Download address
☁️
Download #1
Baidu Skydisk
解压密码:www.4s5.cn-poposjcn
Download now
微信赞赏

WeChat

支付宝赞赏

Alipay

✍️ Author: Hong Mu

webmaster · Thanks for reading, stay tuned for more exciting content

Author homepage View home page →

Related articles

Empire cms website SEO optimization promotion template free download and sharing 001

Empire cms website SEO optimization promotion template free download and sharing 001 Practical Collection empire template

Templates are collected online, but there are problems with the templates. They have been repaired and the absolute paths and invalid css files have been reorganized and imported. After uploading, the installation is ready for use. It can be called according to your own website. There are two terminals, mobile terminal and PC terminal. The default background admin and 123456 rendering video display
👁 262
Empire cms SEO training blog post template 002

Empire cms SEO training blog post template 002 Practical Collection empire template

Collect the template, then install, scan, repair, and package the template. Two problems are fixed. The first is the problem of being unable to log in after restoring the backup data. The second is the problem of being unable to install. After scanning, the source code is safe and there is no backdoor. Rendering: Video display
👁 262
Empire cms imitates a certain WordPress download resource site template 004

Empire cms imitates a certain WordPress download resource site template 004 Practical Collection empire template

I don't know which website it is, but the brother who shared the template with me said that it cost 300 oceans... After I got the template, I fixed a problem, that is, there is a login box at the head of each page. This box is called by Empire js. Since it has not been modified, it is very ugly, so I fixed the renderings: Image demonstration: Due to some advertisements appearing in the template, there is no video demonstration...
👁 377

Recommended reading

Government Association Website Template 0111

Government Association Website Template 0111 Practical Collection Yiyou template

An eYouCMS website template designed specifically for government agencies and industry associations. Its sophisticated and professional design is ideal for showcasing government transparency initiatives, association functions, industry trends, and member services. This template helps government bodies and industry associations establish an official online information publishing platform. Template Overview | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for eYouCMS | eYouCMS...
👁 32
Financial Loan Landing Page Website Template 1171

Financial Loan Landing Page Website Template 1171 Practical Collection Yiyou template

An EyouCMS website template designed specifically for financial loan landing pages. It features a strong marketing-oriented design with a compact, efficient layout that effectively highlights the advantages of loan products, interest rate policies, and application portals. This is an excellent tool for financial institutions conducting Baidu PPC campaigns or landing page promotions. Template Display | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for EyouCMS | EyouCMS...
👁 50
(Adaptive mobile version) Responsive PBootCMS Law Firm Website Template – Download Blue Law Firm Website Source Code – 0250

(Adaptive mobile version) Responsive PBootCMS Law Firm Website Template – Download Blue Law Firm Website Source Code – 0250 Practical Collection pbootcms Template

An adaptive, responsive PbootCMS website template designed for law firms and legal consultation services for mobile devices. The professional blue design is ideal for lawyers or law firms to showcase their legal services and successful case studies. It helps law firms build a professional online presence and attract clients seeking legal assistance. Template Display | Installation Instructions | Website Backend: /admin.php | Username: admin | Password: admin | Extraction Password: www.4s5.cn...
👁 52
Responsive school/college website template 0112

Responsive school/college website template 0112 Practical Collection Yiyou template

This EYO CMS responsive template is ideal for schools, universities, and academic institutions. Its educational-themed design is perfect for showcasing school environments, teaching achievements, admissions information, and campus news, helping educational organizations attract students and parents online. Template Demo | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for EYO CMS | EYO CMS (Eyo...
👁 56
How is the AI that automatically generates articles based on a given title trained?

How is the AI that automatically generates articles based on a given title trained? Summary of pitfalls

The training of AI systems for automatic article generation is typically implemented using natural language processing (NLP) techniques and machine learning algorithms. Below is a general training process: Data collection: First, a large amount of article data—including titles and body text—must be collected. This data can be sourced from websites, news outlets, blogs, and other platforms. The quantity and quality of the data have a significant impact on the accuracy of the training. Data cleaning and preprocessing: The collected data is then cleaned and preprocessed to remove...
👁 353