1
在我的Apache配置,我有以下聲明:Apache的現代重寫
RewriteRule ^/classic(.*) /$1 [nc,l]
這將所有語句返回http://localhost/classic基本基礎htdoc文件夾(這樣的index.html使用)
我想能夠輸入http://localhost/classic/somefolder並使其進入htdocs中的特定文件夾。
我該怎麼做呢?
在我的Apache配置,我有以下聲明:Apache的現代重寫
RewriteRule ^/classic(.*) /$1 [nc,l]
這將所有語句返回http://localhost/classic基本基礎htdoc文件夾(這樣的index.html使用)
我想能夠輸入http://localhost/classic/somefolder並使其進入htdocs中的特定文件夾。
我該怎麼做呢?
RewriteRule ^/classic/somefolder/(.*)$ /elsewhere/$1 [NC,L]
RewriteRule ^/classic/(.*)$ /$1 [NC,L]