2
我的.htaccess是重定向問題
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([a-z0-9_-]+)\.html$ index.php/page/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|asset|robots\.txt)
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>
但它不是在mochahost工作,我試了幾個時間,但它不工作。我怎麼解決這個問題?
您使用笨的什麼版本,您使用的XAMPP或WAMP? – user4419336
在您的服務器上啓用了mod_rewrite – RiggsFolly
這與mysql有什麼關係? – dsharew