As a long-term operator of the AnQi CMS platform, I am well aware of the importance of website compliance and information accuracy for user trust and brand image.The website filing number is an essential component of domestic website operation, and its correct display and link on the website are the basis for ensuring the legal operation of the website.The AnQi CMS fully considered these operational needs from the outset, providing us with a simple and efficient way to set up and call functions.

Where to set the website filing number in AnQiCMS

In the Anqi CMS backend management interface, all global website configurations are concentrated in the "Backend Settings" area. To enter or modify the website's filing number, you need to navigate toBack-end settings > Global settings. On this page, you will see an input box named "record number".This position is reserved specifically for your website's ICP filing number, ensuring the unified management of important information.

Accurately fill in the website filing number

Please be sure to fill in your website ICP filing number in the "Filing Number" input boxCore partThis means that if your filing number usually has a suffix like “-1”, for example “Beijing ICP preparation number 12345678-1”, you are in AnQi CMSJust fill in “Beijing ICP No. 12345678”. The system will automatically handle the subsequent display and link generation based on the core record number you enter, without the need for you to manually add or worry about formatting issues.This design simplifies the operation process, reducing errors caused by improper formatting.

Call the record number information in the website template

The Anqi CMS provides powerful template tag features, making it very simple and flexible to call dynamic data. You can use it to display the备案number you set in the background on the website front page.systemlabel and specifyname="SiteIcp"The parameter can accurately extract the record number from the system settings and display it at any page location you wish.

In most cases, the filing number is displayed in the footer area of the website. In your template file (for examplefooter.htmlorbase.html), you can call the filing number like this:

<p>{% system with name="SiteIcp" %}</p>

If you wish to store the registration number in a variable for later use, for example, to combine it with other information, or you can also use a custom variable name:

<p>{% system siteIcp with name="SiteIcp" %}{{siteIcp}}</p>

Both of these methods can ensure that the record number is correctly extracted and displayed from the background.

Generate a compliant record number query link

In accordance with relevant Chinese Internet laws and regulations, the ICP filing number displayed on the website must be linked to the Ministry of Industry and Information Technology's government service platform (commonly known as the 'MIIT filing query website'). The Anqi CMS issystemIn the example usage of the tag, the complete code to generate this compliant link has been provided. You just need to embed the calling method of the aforementioned filing number into a standard HTML<a>tag and move ithrefThe attribute points to the official query address of the Ministry of Industry and Information Technologyhttps://beian.miit.gov.cn/. At the same time, in order to optimize search engine performance and user experience, it is recommended to add links forrel="nofollow"andtarget="_blank"Property.

The following is an example of a complete compliance record number link and its display code:

<p>
    <a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">{% system with name="SiteIcp" %}</a>
    &copy; {% now "2006" %} 您的网站名称. All Rights Reserved
</p>

In this example,{% now "2006" %}The label will automatically display the current year,{% system with name="SiteIcp" %}The registration number will be dynamically inserted. Please replace 'Your website name' with the actual name of your website according to your actual needs.By such settings, not only is the website filing number displayed correctly, but it also provides a valid link to the official query platform, fully in line with compliance requirements.

By using these features provided by AnQi CMS, we can easily manage and legally display the website filing information, thereby laying a solid foundation for the stable operation of the website.


Frequently Asked Questions

Do you need to add the suffix “-1” when filling in the ICP record number?

When filling in the record number in the "Global Settings" of the Anqi CMS background, youNot requiredInclude any suffix such as “-1”. For example, if your filing number is “Beijing ICP preparation number 12345678-1”, you only need to fill in “Beijing ICP preparation number 12345678”.The system will automatically handle the correct display and link format.

If my website does not have a filing number, can I not fill it in?

If you operate a website in mainland China, all websites must undergo ICP filing according to legal requirements.If you do not have a record number, you can leave this field blank in AnQi CMS, but your website may face the risk of not being able to access normally or being penalized by regulatory authorities.Please complete the ICP record as soon as possible and fill in the record number in the background promptly.

Is the filing link required to point to the official query platform of the Ministry of Industry and Information Technology?

Yes, in order to comply with relevant regulations and facilitate user query verification, the ICP filing number displayed on the website must be linked to the Ministry of Industry and Information Technology's government service platform (https://beian.miit.gov.cn/)。Safe CMS provides a template call example that defaults to this official link, ensuring compliance.