我目前在OHS-Oracle HTTP服务器上运行了一些(使用Codeigniter完成)。 在转移到OHS之前,我使用Apache,并且我有以下.htaccess文件可以正常工作。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /pssecforms/
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
但现在它不适用于OHS。我该怎么做才能使它有效?