显示没有PHP扩展名的URL(/index.php/dashboard)

时间:2018-02-12 15:16:57

标签: php .htaccess url hide

我的网络服务器上有一个正在运行的Web应用程序。登录对话框(登录@ www.mydomain.com)后,您将重定向到以下URL:mydomain.com/index.php/dashboard。

如何在网址中隐藏.php扩展程序?

我尝试了一些.htaccess设置,比如"我没有想法我做什么"做什么" :d 我需要你的帮助!

我的最后一次.htaccess条件:

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ /index.php [L] 

1 个答案:

答案 0 :(得分:0)

不使用.htaccess,您可以使用文件夹来构建每个页面。

例如您的信息中心;在根目录中创建文件夹dashboard,然后在该文件夹中创建index.php文件。该文件将包含仪表板的html / php代码。现在,您可以mydomain.com/dashboard

访问您的网页了