我编写了一个.htaccess文件,该文件重定向到我本地计算机上的公共文件夹,但在上载到服务器后,该文件并没有重定向到我的Cpanel上。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !/public
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
# Direct all requests to /public folder
RewriteRule ^(.*)$ /public/index.php?url=$1 [L]
</IfModule>
如何在我的Cpanel上在线重定向?
2条答案
按热度按时间xkrw2x1b1#
不要使用htaccess文件来重定向到本地或服务器上的公共文件夹,而是将域指向/public文件夹。
在cpanel中,添加域时,您可以指定/public文件夹的路径作为要使用的域的路径。
5uzkadbs2#
使用此文件夹到根文件夹
然后创建另一个名为
server.php
的文件将此代码放到server.php中