.htaccess – 我的htaccess规则没有为实时服务器上的项目而工作(htaccess在文件夹中)

我想做什么:

在我的服务器上,我希望通过htaccess(从URL中删除.php或.html扩展名)编写URL-REWriting规则.

我的网站网址:

http://enacteservices.com/EpcGroup/

和:

http://www.enacteservices.com/EpcGroup/contact

现在,如果您查看第二个URL .php扩展名被完全删除,但它显示页面未找到页面.

如果我在那里写的:http://www.enacteservices.com/EpcGroup/contact.php

它开始工作.

我试图写的.htaccess(这个文件在我的文件夹中):

第一

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /EpcGroup/
    RewriteRule ^index\.php$- [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([^\.]+)$$1.php [NC,L]
    RewriteRule ^([^\.]+)$$1.html [NC,L]

    #Removes access to the system folder by users.

    #Additionally this will allow you to create a System.php controller,

    #previously this would not have been possible.

    #'system' can be replaced if you have renamed your system folder.

    RewriteCond %{REQUEST_URI} ^system.*

    RewriteRule ^(.*)$admin/index.php?/$1 [L]

    #When your application folder isn't in the system folder

    #This snippet prevents user access to the application folder

    #Submitted by: Fabdrol

    #Rename 'application' to your applications folder name.

    RewriteCond %{REQUEST_URI} ^application.*

    RewriteRule ^(.*)$index.php?/$1 [L]



    #Checks to see if the user is attempting to access a valid file,

    #such as an image or css document, if this isn't true it sends the

    #request to index.php

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>

    # If we don't have mod_rewrite installed, all 404's

    # can be sent to index.php, and everything works as normal.

    # Submitted by: ElliotHaughin



    ErrorDocument 404 /index.php
</IfModule>

第二:添加(EpcGroup /):

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /EpcGroup/
    RewriteRule ^index\.php$- [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([^\.]+)$$1.php [NC,L]
    RewriteRule ^([^\.]+)$$1.html [NC,L]

    #Removes access to the system folder by users.

    #Additionally this will allow you to create a System.php controller,

    #previously this would not have been possible.

    #'system' can be replaced if you have renamed your system folder.

    RewriteCond %{REQUEST_URI} ^system.*

    RewriteRule ^(.*)$EpcGroup/admin/index.php?/$1 [L]

    #When your application folder isn't in the system folder

    #This snippet prevents user access to the application folder

    #Submitted by: Fabdrol

    #Rename 'application' to your applications folder name.

    RewriteCond %{REQUEST_URI} ^application.*

    RewriteRule ^(.*)$EpcGroup/index.php?/$1 [L]



    #Checks to see if the user is attempting to access a valid file,

    #such as an image or css document, if this isn't true it sends the

    #request to index.php

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$EpcGroup/index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>

    # If we don't have mod_rewrite installed, all 404's

    # can be sent to index.php, and everything works as normal.

    # Submitted by: ElliotHaughin
    ErrorDocument 404 EpcGroup/index.php

</IfModule>

但它不起作用.

一个.htaccess在我的根上有这个编码:

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

最佳答案 根据最近的评论,将根.htaccess更新为:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{REQUEST_URI} !^/EpcGroup [NC]    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>

以及EpcGroup目录中的一个:

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /EpcGroup/

    RewriteRule ^index\.php$- [L]

    RewriteCond %{REQUEST_FILENAME}.php -f
    RewriteRule ^[^\.]+$$0.php [NC,L]

    RewriteCond %{REQUEST_FILENAME}.html -f
    RewriteRule ^[^\.]+$$0.html [NC,L]

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$admin/index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin
    ErrorDocument 404 /index.php
</IfModule>
点赞