实际上,我正在本地 wamp 服务器上开展一个项目。我需要从这里重定向主页
网址 ------>localhost/aftabcurrency/cpanel/main_page.php
到以下
网址localhost/aftabcurrency/main_page.php
我已经在 m .htaccess 文件中尝试过这个重写代码
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^main_page.php$ /aftabcurrency/cpanel/main_page.php [L]
还有这个
RewriteRule ^main_page.php$ aftabcurrency/cpanel/main_page.php [L]
但它给出了 Not FOUND 的错误...