我的localhost的taha
目录中有一个项目,客户端部分位于FrontEnd
目录中,现在:
如何在localhost/taha/FrontEnd
中将localhost
重写为.htaccess
?
答案 0 :(得分:0)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteBase /
# If the request is not for a valid directory
RewriteCond %{REQUEST_FILENAME} !-d
# If the request is not for a valid file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule !^taha/FrontEnd/ taha/FrontEnd%{REQUEST_URI} [L,NC]