0
我試圖重寫某個php文件的url。在wamp服務器上使用.htaccess進行url重寫時遇到問題
目標爲網址:www.mysite.com/filename/topic/
或www.mysite.com/filename/topic
什麼工作:www.mysite.com/filename
和www.mysite.com/topic
我已經嘗試了所有的重寫規則我知道這應該工作,但每次我的話題添加到URL我結束了一個500 internal server error
當前.htacces文件
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
//No need for php extension
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
//Rewriting the url
RewriteRule ^([a-zA-Z0-9_-]+)$ filename.php?topic=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ filename.php?topic=$1
對不起,花了這麼長的時間來回答。它有點工作,只有問題,我最終是因爲我的css/jquery沒有正確加載時加入.com /文件名/主題。即使我從根抓起。 '/ CSS/style.css' –