.htaccess文件在Godaddy服务器上无法正常工作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess文件在Godaddy服务器上无法正常工作相关的知识,希望对你有一定的参考价值。

我在godaddy linux cpanel上托管了我的文件夹。 Wordpress文件位于/ public_html / tma内。

我面临奇怪的问题,我的.htaccess文件无法正常工作。

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

当我请求这个wordpress文件夹,http:// {myip} / {uniquestring} / tma /然后即使它有index.php,它显示404错误

答案

如果您的文件位于子目录中,WordPress建议使用此方法:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteCond %{REQUEST_URI} !^/my_subdir/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /my_subdir/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ my_subdir/index.php [L] 
</IfModule>
另一答案

只需尝试在.htaccess文件中添加AllowOverride All。

谢谢。

以上是关于.htaccess文件在Godaddy服务器上无法正常工作的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess 在 Xampp localhost 服务器上不起作用

在godaddy中的Codeigniter .htaccess

.htaccess url rewrite在GoDaddy Shared Server上不起作用,返回了Apache 2.4.3 - 404错误

godaddy域名无法解析???

如何创建 .htaccess 来显示 SVG?

子目录中的 CodeIgniter 站点,htaccess 文件可能会干扰主目录中的 htaccess 文件?