Apache重定向到确切的目录清理URL

时间:2017-08-01 15:59:46

标签: php apache

在我的网站上,我想让网页看起来更干净,所以现在看起来像这个

http://mywebsite.com/application/public/index.php

我希望看到更清洁的东西只是索引控制器和这样的参数

http://mywebsite.com/index.php

2 个答案:

答案 0 :(得分:1)

在根目录(public_html /)上创建一个“<button onclick='event.preventDefault()'>Prevent Default</button> <button style='touch-action: manipulation'>Touch Action Manipulation</button> ”文件并制作如下的重定向规则:

.htaccess

答案 1 :(得分:1)

您可以从apache更改您的应用程序路径

<Directory /yousitefolders/application/public>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
</Directory>

或者通过在您的网站文件夹中创建一个.htaccess,通常是public_html并写下:

RewriteEngine On
RewriteRule ^(.*)$ application/public/$1 [L]