CPanel Silex WebServer 配置文件在哪里
Where is the CPanel Silex WebServer configuration file
我想运行我网站的代码在本地环境中。问题是,我的本地 Silex 不像在 CPanel 服务器中那样工作。
CPanel Silex WebServer 配置文件位于何处?我想查看它并使我的本地 Silex 配置与它相同。
更新:
我所说的 WebServer 配置是基于此 link:
http://silex.sensiolabs.org/doc/master/web_servers.html
为了使 Silex 工作,例如,如果我们使用 Apache,我们需要使用 htaccess
文件配置 Web 服务器:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>
终于自己找到了答案。
在public_html
文件夹中,您需要找到.htaccess
文件。如果看不到它,请将文件管理器设置为显示设置中的隐藏文件。将 .htaccess
复制到您的本地环境即可。
我想运行我网站的代码在本地环境中。问题是,我的本地 Silex 不像在 CPanel 服务器中那样工作。
CPanel Silex WebServer 配置文件位于何处?我想查看它并使我的本地 Silex 配置与它相同。
更新:
我所说的 WebServer 配置是基于此 link: http://silex.sensiolabs.org/doc/master/web_servers.html
为了使 Silex 工作,例如,如果我们使用 Apache,我们需要使用 htaccess
文件配置 Web 服务器:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>
终于自己找到了答案。
在public_html
文件夹中,您需要找到.htaccess
文件。如果看不到它,请将文件管理器设置为显示设置中的隐藏文件。将 .htaccess
复制到您的本地环境即可。