【发布时间】:2018-10-09 13:30:40
【问题描述】:
我有以下重写条件,它工作正常:
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 [L]
但是,只需在我的网址中添加一个尾随反斜杠,网站就会中断。我看过几个类似的问题和答案,但对我没有用,主要是因为我不熟悉 htaccess。
如何让我的网址自动更改
http://localhost:8888/mysite/mylink/
到
http://localhost:8888/mysite/mylink
我正在使用 codeigniter,我的应用程序仍在本地主机中。感谢这方面的任何帮助。谢谢。
【问题讨论】:
-
您可以在那里找到答案:stackoverflow.com/questions/21417263/…
标签: .htaccess codeigniter