配置信息 程序版本 : 2.5 [查看最新版本]------這里是我所用程序的官方網(wǎng)站下載地址 操作系統(tǒng) : Linux 運(yùn)行環(huán)境 : Apache 上傳附件限制 : 20M 執(zhí)行時(shí)間限制 : 60秒 服務(wù)器域名/IP : www.jietouxiaochi.com [ 203.171.234.138 ] 剩余空間 : 32.86G
@admin
Apache 偽靜態(tài)規(guī)則
<IfModule mod_rewrite.c>
RewriteEngine on
#不顯示index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteRule ^upload/(.*) index.php?m=public&a=photo&url=$1
</IfModule>
以上是 .htaccess 文件內(nèi)容,
在linux高級(jí)自定義 rewrite規(guī)則里面自定義還是一樣的!
Not FoundThe requested URL /search-index.xhtml was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
上面是沒(méi)有加載偽靜態(tài)規(guī)則的404錯(cuò)誤提示
Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, you@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log.
上面是加載了偽靜態(tài)規(guī)則的提示500錯(cuò)誤
官方網(wǎng)站上沒(méi)有錯(cuò)誤,請(qǐng)老大看看是什么情況謝謝 @admin |