简体   繁体   English

虚荣网址,.htaccess问题

[英]Vanity URL, .htaccess problem

Im trying to add vanity url to my web page, but its not working. 我试图将虚荣网址添加到我的网页,但无法正常工作。 So far I have tried with 到目前为止,我已经尝试过

RewriteRule ^([A-Za-z0-9]+)[^.]$ index.php?page=$1 [nc]

and

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.*)$ index.php?page=$1 [NC]

but its not working, and i dont know .htaccess syntax! 但它不起作用,我不知道.htaccess语法!

All I got is this error: 我得到的只是这个错误:

Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. 服务器内部错误服务器遇到内部错误或配置错误,无法完成您的请求。

Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. 请与服务器管理员admin @ localhost联系,并通知他们错误发生的时间以及您可能做的任何可能导致错误的事情。

More information about this error may be available in the server error log. 服务器错误日志中可能会提供有关此错误的更多信息。

Do you know how can I do this? 你知道我该怎么做吗? How can I make.htaccess to redirect my url which looks like www.page.com/vanityurl to index.php?page = $1 but page variable must now be "vanityurl". 我如何make.htaccess来将我的网址(如www.page.com/vanityurl)重定向到index.php?page = $ 1,但页面变量现在必须为“ vanityurl”。

I tried this on localhost and on my web server but i get the same error! 我在本地主机和Web服务器上尝试了此操作,但出现了同样的错误!

Thank you! 谢谢! For your answer! 为您的答案! :) :)

Check the error_log to find out what is going on. 检查error_log找出正在发生的事情。

It might be that your httpd.conf is not set to allow rewrite rules to be specified in .htaccess 您的httpd.conf可能未设置为允许在.htaccess指定重写规则

If that is the case then you will see a message in the error log like: 如果是这种情况,那么您将在错误日志中看到一条消息,例如:

RewriteEngine not allowed here

In order to use rewrite rules in .htaccess the AllowOverride setting needs to either include FileInfo or be set to All eg 为了在.htaccess使用重写规则, AllowOverride设置需要包含FileInfo或设置为All例如

AllowOverride FileInfo

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM