When we install a forum or blog on a virtual host, in order to facilitate management, we will install it in a folder under the root directory (www/web directory). For example, if I install a Discuz forum, I A new bbs directory will be created in the root directory, and then the Discuz installation program will be uploaded to this directory for installation. After the installation is completed, the address where we access the forum will become: http://www.example.com/bbs ( http://www.example.com/bbs/forum.php), but this will be a bit uncomfortable. After all, our domain name is: http://www.example.com. We only want to use this domain name to directly Visit our forum without adding a bbs subdirectory. At this time, the URL forwarding record comes into play. It was born to solve this type of problem, so that it can also be used to implement pseudo-static URLs. This is not the purpose of this article. Topic, here we only discuss how to use URL forwarding technology to forward domain names to subdirectories. As for what URL forwarding is, I won’t go into it here. It is everywhere on Baidu. Let’s just talk about how to implement it.
(1) We create a new .htaccess text file locally. Note that .htaccess is the name of this text file, so the full name of the text file is: .htaccess.txt
(2) Write the following code in the text file:
![[Transfer] Bind domain name to subdirectory_PHP tutorial](http://www.bkjia.com/uploads/allimg/140326/22332G5X-0.gif?x-oss-process=image/resize,p_40)
<span> 1</span> <span># 将 RewriteEngine 模式打开 </span><span> 2</span> <span>RewriteEngine On </span><span> 3</span> <span> 4</span> RewiteBase / <span> 5</span> <span> 6</span> RewriteCond %{HTTP_HOST} ^(www\.)?<span>example\.com$ [NC] </span><span> 7</span> RewriteCond %{REQUEST_URI} !^/bbs/ <span> 8</span> RewriteCond %{REQUEST_FILENAME} !-<span>f </span><span> 9</span> RewriteCond %{REQUEST_FILENAME} !-<span>d </span><span>10</span> RewriteRule ^(.*)$ bbs/$<span>1</span> <span>11</span> <span># 没有输入文件名的默认到到首页 </span><span>12</span> RewriteCond %{HTTP_HOST} ^(www\.)?<span>example\.com$ [NC] </span><span>13</span> RewriteRule ^(/)?$ bbs/forum.php [L]
![[Transfer] Bind domain name to subdirectory_PHP tutorial](http://www.bkjia.com/uploads/allimg/140326/22332G5X-0.gif?x-oss-process=image/resize,p_40)
(3) Remove the extension .txt from the text file, and use the ftp upload tool to upload it to the root directory of the website (www/web directory). Note that this must be the root directory of the website. We also need to write this file when doing URL staticization in SEO optimization settings, but the .htaccess file must be placed in the bbs directory.
Now you can access the forum as long as you visit: http://www.example.com
Note: (.htaccess file explanation)
[RewriteEngine On] means that the rewrite engine is on or off. The function is to conveniently turn on or off the following statements, so that there is no need to comment statements one by one.
[RewriteCond %{HTTP_HOST} ^(www.)?example.com$ [NC]] represents the rewrite condition. The preceding %{HTTP_HOST} represents the currently visited URL, which only refers to the prefix part. The format is www.example.com excluding "http://" and "/", ^ means the beginning of the string, $ means the end of the string, . means escaped., it is fine if not escaped, escaping is recommended. In case some servers do not support it, ? means that the preceding bracket www. appears 0 or 1 times. The meaning of this rule is that if the URL visited is example.com or www.example.com, execute the following statement. If it does not match, skip it. . Also, there is no guarantee that the URL entered by everyone is in lowercase. If the URL is entered in uppercase, the Linux system is case-sensitive, so [NC] should be added after RewriteCond to ignore case.
[RewriteCond %{REQUEST_URI} !^/bbs/] is also a rewriting condition. %{REQUEST_URI} represents the relative address of access, which is the address relative to the root directory, which is the component behind the domain name/. The format includes the first "/", ! means non, this statement means that the accessed address does not start with /bbs/, but only starts with ^ and does not end with $
[RewriteCond %{REQUEST_FILENAME} !-f]
[RewriteCond %{REQUEST_FILENAME} !-d]
The meaning of these two statements is that the requested file or path does not exist. If the file or path Exists will return an already existing file or path
[RewriteRule ^(.*)$ bbs/$1] represents the rewrite rule. The most important part means that when the above RewriteCond conditions are met, this rewrite will be executed. Rule, ^(.*)$ is a regular expression match, matching the current requested URL, ^(.*)$ means matching any character of the current URL, . means any single character, * means matching 0 times or N times (N>0), the following /bbs/$1 is a rewriting component, which means that the previously matched character is rewritten as /bbs/$1. This $1 represents a reverse match and refers to the component of the first parenthesis. That is, .* in ^(.*)$.
—————————————————————————————————— ————————————————————————————————————————————
Attached below are simple grammar rules and flags:
[RewriteCond syntax:]
RewriteCond TestString CondPattern [flags]
Other uses of rewritecond:
'-d' (directory)
Treat TestString as a path name and test whether it is an existing directory.
‘-f’ (regular file)
Treat TestString as a pathname and test whether it is an existing regular file.
‘-s’ (non-empty regular file)
Treat TestString as a pathname and test whether it is an existing regular file with size greater than 0.
‘-l’ (symbolic link)
Treat TestString as a pathname and test whether it is an existing symbolic link.
‘-x’ (executable)
Treat TestString as a pathname and test whether it is an existing file with executable permissions. This permission is detected by the operating system.
‘-F’ (for files that exist in subrequests)
Checks whether TestString is a valid file and can be accessed under the server’s current access control configuration. It uses an internal subrequest to do the check. It will reduce the performance of the server, so please use it with caution!
‘-U’ (URL that exists for the subrequest)
Checks whether TestString is a valid URL and can be accessed under the current access control configuration of the server. It uses an internal subrequest to do the check. It will reduce the performance of the server, so please use it with caution!
[RewriteRule syntax:]
RewriteRule Pattern Substitution [flags]
【flags】:
‘chain|C’ (link next rule)
This tag links the current rule to the next rule. It has the effect that if a rule is matched, its subsequent rules will continue to be processed, that is, this mark will have no effect; if the rule is not matched, its subsequent rules will be skipped. For example, when performing an external redirect in a directory-level rule, you may need to remove ".www" (".www" should not appear here).
‘cookie|CO=NAME:VAL:domain[:lifetime[:path]]’ (set cookie)
Set a cookie on the client side. The name of the cookie is NAME and the value is VAL. Domain is the domain of the cookie, such as '.apache.org', optional lifetime is the validity period of the cookie (minutes), and optional path is the path of the cookie.
'env|E=VAR:VAL' (set environment variable)
This tag sets the value of the environment variable VAR to VAL. VAL can contain the expandable regular expression inverse References ($N and %N). This tag can be used multiple times to set multiple variables. These variables can be indirectly referenced in many subsequent situations, usually in XSSI () or CGI ($ENV{'VAR'}), but also in subsequent The CondPattern parameter of the RewriteCond directive is referenced via %{ENV:VAR}. Use this to remember information stripped from the URL.
‘forbidden|F’ (forbidden URL)
Forcibly ban the current URL, that is, immediately feedback an HTTP response code 403 (forbidden). Using this tag, you can chain several RewriteConds to conditionally block certain URLs.
‘gone|G’ (forced abandoned URL)
Force the current URL to be abandoned, that is, immediately feedback an HTTP response code 410 (obsolete). Use this tag to indicate that the page has been abandoned and no longer exists.
‘handler|H=Content-handler’ (mandatory content handler specification)
Force the custom content handler of the target file to be Content-handler. For example, the ScriptAlias directive is used to emulate the mod_alias module to force all files within the mapped folder to be processed by the "cgi-script" processor.
‘last|L’ (end rule)
Stops the rewrite operation immediately and no other rewrite rules are applied. It corresponds to the last command in Perl or the break command in C language. This tag is used to prevent the currently rewritten URL from being rewritten again by subsequent rules. For example, you can use it to rewrite the URL of the root path (‘/’) to an actual URL (for example: ‘/e/www/’).
‘next|N’ (start over)
Re-execute the rewrite operation (start over from the first rule). At this time, the URL processed again is no longer the original URL, but the URL processed by the last rewriting rule. It corresponds to the next command in Perl or the continue command in C language. This mark allows the rewrite operation to be restarted (immediately back to the beginning of the loop). But be careful not to create an infinite loop!
'nocase|NC' (ignore case)
It makes Pattern ignore case, that is, when Pattern matches the current URL, 'A-Z' and 'a-z' There is no difference.
'noescape|NE' (do not escape URIs in output)
This tag prevents mod_rewrite from applying normal URI escaping rules to the rewrite results. Under normal circumstances, special characters ('%', '$', ';', etc.) will be escaped into equivalent hexadecimal encodings ('%25′, '%24', '%3B', etc.) . This flag prevents such escaping, allowing symbols such as percent signs to appear in the output, such as:
RewriteRule /foo/(.*) /bar?arg=P1%3d$1 [R,NE]
Can cause '/foo/zed' to be redirected to a safe request '/bar?arg=P1=zed'.
‘nosubreq|NS’ (Do not process internal subrequests)
This tag forces the rewrite engine to skip the rewrite rule when the current request is an internal subrequest. For example, when mod_include attempts to search the directory default file (index.xxx), Apache will generate a subrequest internally. Rewriting rules is not necessarily useful for subrequests, and it may even throw an error if the entire ruleset is in effect. Therefore, you can use this tag to exclude certain rules.
Usage guidelines: If you add a CGI script prefix to URLs to force them to be processed by CGI scripts, but the error rate (or resource overhead) of subrequest processing is high, in this case, you can use this tag .
'proxy|P' (force to proxy)
This flag causes the replacement component to be internally forced to be sent as a proxy request, and immediately interrupts the rewrite processing, then hands over the processing to the mod_proxy module . You must ensure that this replacement string is a valid URI that can be processed by mod_proxy (such as starting with http://hostname), otherwise you will get an error returned by the proxy module. Using this tag, certain remote components can be mapped to the local server domain name space, thereby enhancing the functionality of the ProxyPass directive.
Note: To use this feature, the mod_proxy module must be enabled.
'passthrough|PT' (hand over to next processor)
This tag forces the rewrite engine to set the uri field in the internal request_rec structure to the value of the filename field, this little This flag is just a hack to enable post-processing of the output of RewriteRule directives, using Alias , ScriptAlias, Redirect, and other directives from various URI-to-filename translators.]. Give an example to illustrate its meaning: If you want to rewrite /abc to /def, and then use mod_alias to convert /def to /ghi, you can do this:
RewriteRule ^/abc(.*) /def$1 [ PT]
Alias /def /ghi
If the PT tag is omitted, although the part that rewrites uri=/abc/… to filename=/def/… works normally, subsequent mod_alias attempts to convert the URI An error will occur when reaching the file name.
Note: This tag must be used if you need to mix multiple modules that convert URIs to file names. . Mixing mod_alias and mod_rewrite here is a typical example.
‘qsappend|QSA’ (append query string)
This tag forces the rewrite engine to append a query string to the existing replacement string instead of simply replacing it. You can use this tag if you need to add information to the request string through rewriting rules.
'redirect|R [=code]' (forced redirect)
If Substitution starts with http://thishost[:thisport]/ (makes the new URL a URI), An external redirect can be forced. If no code is specified, an HTTP response code 302 (Temporary Move) is generated. If you need to use another response code in the range 300-400, just specify it here (or use one of the following symbolic names: temp (default), permanent, seeother). Use it to feed back the normalized URL to the client, such as rewriting "/~" to "/u/", or always adding a slash to /u/user, etc.
Note: When using this tag, you must ensure that the replacement field is a valid URL. Otherwise, it would point to an invalid location! And keep in mind that the tag itself just prefixes the URL with http://thishost[:thisport]/ and the rewriting operation will still proceed. Often, you will also want to stop the rewriting operation and redirect immediately, so you will also need to use the 'L' tag.
’skip|S=num’ (skip subsequent rules)
This tag forces the rewrite engine to skip num rules after the current matching rule. It can simulate an if-then-else structure: the last rule is a then clause, and the skip=N rules are else clauses. Note: It is different from the 'chain|C' tag!
‘type|T=MIME-type’ (forced MIME type)
Force the MIME type of the target file to MIME-type, which can be used to force the content type based on certain conditions. For example, the following command allows .php files to be displayed by mod_php according to the MIME type of the PHP source code (application/x-httpd-php-source) when called with the .phps extension:
RewriteRule ^(.+ .php)s$ $1 [T=application/x-httpd-php-source]

Vue.js与ASP.NET的结合,实现Web应用的性能优化和扩展的技巧和建议随着Web应用的快速发展,性能优化成为开发者不可或缺的重要任务。Vue.js作为一款流行的前端框架,与ASP.NET的结合可以帮助我们实现更好的性能优化和扩展。本文将会介绍一些技巧和建议,并提供一些代码示例。一、减少HTTP请求HTTP请求的数量直接影响着Web应用的加载速度。通过

如何在ASP.NET程序中正确使用和优化MySQL连接池?引言:MySQL是一种广泛使用的数据库管理系统,它具有高性能、可靠性和易用性的特点。在ASP.NET开发中,使用MySQL数据库进行数据存储是常见的需求。为了提高数据库连接的效率和性能,我们需要正确地使用和优化MySQL连接池。本文将介绍在ASP.NET程序中如何正确使用和优化MySQL连接池的方法。

译者|陈峻审校|重楼上个世纪90年代,当人们提起软件编程时,通常意味着选择一个编辑器,将代码检入CVS或SVN代码库,然后将代码编译成可执行文件。与之对应的Eclipse和VisualStudio等集成开发环境(IDE)可以将编程、开发、文档、构建、测试、部署等步骤纳入到一个完整的软件开发生命周期(SDLC)中,从而提高了开发人员的工作效率。近年来,流行的云计算和DevSecOps自动化工具提升了开发者的综合能力,使得更多的企业能够更加轻松地开发、部署和维护软件应用。如今,生成式AI作为下一代开

如何在ASP.NET程序中重连MySQL连接?在ASP.NET开发中,使用MySQL数据库是非常常见的。然而,由于网络或数据库服务器的原因,有时会导致数据库连接中断或超时。在这种情况下,为了保证程序的稳定性和可靠性,我们需要在连接断开后重新建立连接。本文将介绍如何在ASP.NET程序中实现重连MySQL连接的方法。引用必要的命名空间首先,在代码文件的头部引用

Vue.js与ASP.NET的结合,实现企业级应用的开发和部署在当今快速发展的互联网技术领域,企业级应用的开发和部署变得越来越重要。Vue.js和ASP.NET是两个在前端和后端开发中广泛使用的技术,将它们结合起来可以为企业级应用的开发和部署带来诸多优势。本文将通过代码示例介绍如何使用Vue.js和ASP.NET进行企业级应用的开发和部署。首先,我们需要安装

如何在ASP.NET程序中正确配置和使用MySQL连接池?随着互联网的发展和数据量的增大,对数据库的访问和连接需求也在不断增加。为了提高数据库的性能和稳定性,连接池成为了一个必不可少的技术。本文主要介绍如何在ASP.NET程序中正确配置和使用MySQL连接池,以提高数据库的效率和响应速度。一、连接池的概念和作用连接池是一种重复使用数据库连接的技术,在程序初始

ASP.NET中的内置对象有“Request”、“Response”、“Session”、“Server”、“Application”、 “HttpContext”、“Cache”、“Trace”、“Cookie”和“Server.MapPath”:1、Request,表示客户端发出的HTTP请求;2、Response:表示Web服务器返回给客户端的HTTP响应等等。

在Linux上使用VisualStudio进行ASP.NET开发的推荐配置概述:随着开源软件的发展和Linux操作系统的普及,越来越多的开发者开始在Linux上进行ASP.NET开发。而作为一款功能强大的开发工具,VisualStudio在Windows平台上一直占据着主导地位。本文将介绍如何在Linux上配置VisualStudio来进行ASP.NE


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
