我已經把\Application\Common\Conf\config.php中的'URL_MODEL'設定成了“2”,也開啟了rewrite_module,/home模組可以訪問,但是文章頁面等都不能訪問,見附圖,請大神指點一下。
回覆
看了一下wordpress的.htaccess檔案,自己搞定了。
在rewrite規則中新增一句“RewriteBase /ot”,ot為檔案目錄,具體如下:
在rewrite規則中新增一句“RewriteBase /ot”,ot為檔案目錄,具體如下:
<IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteBase /ot RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule>