考虑
http://localhost/MyProject/
这是根网址
访问此内容时,我想将网址更改为
http://localhost/MyProject/Apps/
该 url 应如上所示,但应执行
http://localhost/MyProject/index.php
那就是我只想在网址中添加“应用程序”一词。没有名为“应用程序”的文件夹...
考虑
http://localhost/MyProject/
这是根网址
访问此内容时,我想将网址更改为
http://localhost/MyProject/Apps/
该 url 应如上所示,但应执行
http://localhost/MyProject/index.php
那就是我只想在网址中添加“应用程序”一词。没有名为“应用程序”的文件夹...
RewriteEngine On
RewriteCond %{HTTP_HOST} ^localhost/MyProject/index/$ [NC]
RewriteRule ^(.*)$ http:localhost/index.php [R=301,L]
希望这会有所帮助......因为我没有在我的本地环境中尝试过。
您需要在文件中添加 Mod_Rewrite .htaccess
(在您的MyProject
文件夹中):
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule /? Apps/ [R=301,L] # Force people to the "Apps" folder
RewriteRule Apps/?$ index.php # Make "Apps" load the index
</IfModule>